key.md 777 字节
Newer Older
L
liumingchu 已提交
1 2 3
#### uni.hideKeyboard()

隐藏软键盘
4 5

隐藏已经显示的软键盘,如果软键盘没有显示则不做任何操作。
M
mehaotian 已提交
6 7 8

**平台差异说明**

W
wanganxp 已提交
9
|App|H5|微信小程序|支付宝小程序|百度小程序|头条小程序|QQ小程序|
10
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
Q
qiang 已提交
11
|√|√|√|√|x|√|√|
M
mehaotian 已提交
12

L
liumingchu 已提交
13 14

#### uni.onKeyboardHeightChange(CALLBACK)
15 16 17 18 19

监听键盘高度变化

**平台差异说明**

W
wanganxp 已提交
20
|App|H5|微信小程序|支付宝小程序|百度小程序|头条小程序|QQ小程序|
21
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
L
liumingchu 已提交
22 23
|HBuilderX 2.2.3+|x|基础库2.7+|x|x|x|√|

24 25 26 27
**CALLBACK 返回参数**

|参数|类型|说明|
|:-|:-|:-|
L
liumingchu 已提交
28 29 30 31 32 33 34 35 36
|height|Number|键盘高度|

**示例代码**

```js
uni.onKeyboardHeightChange(res => {
  console.log(res.height)
})
```