wx.onKeyboardHeightChange(function callback)
基础库 2.7.0 开始支持,低版本需做兼容处理。
监听键盘高度变化
参数
function callback
参数
object res
属性 | 类型 | 说明 |
---|---|---|
height | number | 键盘高度 |
示例代码
wx.onKeyboardHeightChange(res => {
console.log(res.height)
})
基础库 2.7.0 开始支持,低版本需做兼容处理。
监听键盘高度变化
属性 | 类型 | 说明 |
---|---|---|
height | number | 键盘高度 |
wx.onKeyboardHeightChange(res => {
console.log(res.height)
})
本文档使用 BookStack 构建