From 5b0cb593b1ffe3b69c76f6d2c9c2a177dc4e16d2 Mon Sep 17 00:00:00 2001 From: jixinbao Date: Thu, 11 Jul 2024 20:23:05 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E5=BF=AB=E6=89=8B?= =?UTF-8?q?=E5=9C=A8=20input=20=E7=BB=84=E4=BB=B6=E5=85=BC=E5=AE=B9?= =?UTF-8?q?=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/component/input.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/component/input.md b/docs/component/input.md index 8ca17a3f6..b684cac19 100644 --- a/docs/component/input.md +++ b/docs/component/input.md @@ -43,9 +43,9 @@ html规范中input不仅是输入框,还有radio、checkbox、时间、日期 |always-system|Boolean|false|是否强制使用系统键盘和 Web-view 创建的 input 元素。为 true 时,confirm-type、confirm-hold 可能失效|支付宝小程序 2.7.3+| |inputmode|String|"text"|是一个枚举属性,它提供了用户在编辑元素或其内容时可能输入的数据类型的提示。[有效值](#inputmode)|H5(3.6.16+)、App-vue(3.6.16+)| |@input|EventHandle||当键盘输入时,触发input事件,event.detail = {value}|差异见下方 Tips| -|@focus|EventHandle||输入框聚焦时触发,event.detail = { value, height },height 为键盘高度|仅微信小程序、京东小程序、App(2.2.3+) 、QQ小程序支持 height| -|@blur|EventHandle||输入框失去焦点时触发,event.detail = {value: value}|快手小程序不支持| -|@confirm|EventHandle||点击完成按钮时触发,event.detail = {value: value}| 快手小程序不支持| +|@focus|EventHandle||输入框聚焦时触发,event.detail = { value, height },height 为键盘高度|仅微信小程序、京东小程序、App(2.2.3+) 、QQ小程序、快手小程序支持 height| +|@blur|EventHandle||输入框失去焦点时触发,event.detail = {value: value}|| +|@confirm|EventHandle||点击完成按钮时触发,event.detail = {value: value}|| |@keyboardheightchange|eventhandle||键盘高度发生变化的时候触发此事件,event.detail = {height: height, duration: duration}|微信小程序基础库2.7.0+、App 3.1.0+| -- GitLab