小程序
小游戏
企业微信
微信支付
扫描小程序码分享
视频中,从第二个input跳到第三个input后,第三个input失焦,键盘闪烁后收起,需要再次点击才能聚焦。
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
都要2023年了, 问题还在
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
都要22年了 还没解决嘛
+1,我在项目中也遇到这个bug,在遍历渲染input框时出现
上一条帖子你删了吗?
// js
companyFocus(event) {
console.log(
'输入框聚焦'
, event);
this
.setData({ companyFocus:
true
})
},
companyBlur(event) {
'输入框失去焦点'
// wxml
<view class="options">
<
view
class
=
"options"
>
text
"option-title"
space
"emsp"
>平 台:</
><
"{{NotInput[0] ? '' : 'not-input'}}"
>*</
"input-box"
input
"input-view"
value
"{{AccountInfo.Company}}"
focus
"{{companyFocus}}"
confirm-hold
bindinput
"companyChange"
bindfocus
"companyFocus"
bindblur
"companyBlur"
placeholder
"请输入(必填)"
/>
</
使用时,即使特地用聚焦事件修改焦点为true,依然会发生input的失焦问题。
其中,confirm-hold 参数无效,input依然失焦,键盘闪烁出现后消失
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
都要2023年了, 问题还在
都要22年了 还没解决嘛
+1,我在项目中也遇到这个bug,在遍历渲染input框时出现
上一条帖子你删了吗?
// js
companyFocus(event) {
console.log(
'输入框聚焦'
, event);
this
.setData({ companyFocus:
true
})
},
companyBlur(event) {
console.log(
'输入框失去焦点'
, event);
},
// wxml
<
view
class
=
"options"
>
<
text
class
=
"option-title"
space
=
"emsp"
>平 台:</
text
><
text
class
=
"{{NotInput[0] ? '' : 'not-input'}}"
>*</
text
>
<
view
class
=
"input-box"
>
<
input
class
=
"input-view"
value
=
"{{AccountInfo.Company}}"
focus
=
"{{companyFocus}}"
confirm-hold
bindinput
=
"companyChange"
bindfocus
=
"companyFocus"
bindblur
=
"companyBlur"
placeholder
=
"请输入(必填)"
/>
</
view
>
</
view
>
使用时,即使特地用聚焦事件修改焦点为true,依然会发生input的失焦问题。
其中,confirm-hold 参数无效,input依然失焦,键盘闪烁出现后消失