该 API 使用方法为 wx.onKeyboardHeightChange(function listener)
属性 | 类型 | 说明 |
height | number | 键盘高度 |
wx.onKeyboardHeightChange(res => {console.log(res.height)})
该 API 使用方法为 wx.hideKeyboard(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
wx.hideKeyboard({complete: res => {console.log('hideKeyboard res', res)}})
该 API 使用方法为 为 wx.offKeyboardHeightChange(function listener)
const listener = function (res) { console.log(res) }wx.onKeyboardHeightChange(listener)wx.offKeyboardHeightChange(listener) // 需传入与监听时同一个的函数对象
该 API 使用方法为 wx.getSelectedTextRange(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
属性 | 类型 | 说明 |
start | number | 输入框光标起始位置 |
end | number | 输入框光标结束位置 |
wx.getSelectedTextRange({complete: res => {console.log('getSelectedTextRange res', res.start, res.end)}})
本页内容是否解决了您的问题?