在微信小程序里的搜索框,按软键盘回车键触发搜索事件。小程序
<input type="text" placeholder="搜索" value="{{inputVal}}" bindinput="inputTyping" bindconfirm="search" />微信小程序
bindconfirm 即为回车事件,为它绑定上须要触发的事件。search是对应的搜索方法。微信
在微信小程序里的搜索框,按软键盘回车键触发搜索事件。小程序
<input type="text" placeholder="搜索" value="{{inputVal}}" bindinput="inputTyping" bindconfirm="search" />微信小程序
bindconfirm 即为回车事件,为它绑定上须要触发的事件。search是对应的搜索方法。微信