输入框bindInput未正常触发

发布于 7 年前作者 fanghan19847 次浏览最后编辑 7 年前来自 ask

在安卓8.0环境下使用手写输入法在手写完成后不点击输入板直接点击页面元素不触发bindInput事件

wxml:

<input placeholder=“请输入姓名” class=‘label border’ bindinput=“setFullName”  auto-focus/>

js:

function (e) {  

 this.data.user.FULL_NAME = e.detail.value;    

console.log(this.data.user.FULL_NAME);

}

1 回复
xiuying44
xiuying441 楼5 年前

请问解决了吗