• uni.hideKeyboard()
  • uni.onKeyboardHeightChange(CALLBACK)

    uni.hideKeyboard()

    隐藏软键盘

    隐藏已经显示的软键盘,如果软键盘没有显示则不做任何操作。

    平台差异说明

    5+AppH5微信小程序支付宝小程序百度小程序头条小程序QQ小程序
    x

    uni.onKeyboardHeightChange(CALLBACK)

    监听键盘高度变化

    平台差异说明

    5+AppH5微信小程序支付宝小程序百度小程序头条小程序QQ小程序
    HBuilderX 2.2.3+x基础库2.7+xxx

    CALLBACK 返回参数

    参数类型说明
    heightNumber键盘高度

    示例代码

    1. uni.onKeyboardHeightChange(res => {
    2. console.log(res.height)
    3. })

    发现错误?想参与编辑?在 GitHub 上编辑此页面!