在input标签中有一个confirm-type 属性,即设置键盘右下角按钮的文字,仅在type='text’时生效
示例:
<input type="text" placeholder="搜索" confirm-type="search"/>
confirm-type 有效值
send 右下角按钮为“发送”
search 右下角按钮为“搜索”
next 右下角按钮为“下一个”
go 右下角按钮为“前往”
done 右下角按钮为“完成”
监听
bindconfirm函数
wxml:
<input type="text" placeholder="搜索" confirm-type="search" bindconfirm='doSearch'/>
js:
doSearch: function(e) { console.log(e) console.log(e.detail.value) },