input 控件监听回车确认按钮。
Posted handsomeBoys
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input 控件监听回车确认按钮。相关的知识,希望对你有一定的参考价值。
前端开发的同学捕捉回车按键经常会用到
if(event.keyCode == 13){
console.log("点击了回车按键");
}
但是在微信上面,我们一般会用到指令 bindconfirm
例子:<input class="top-input-view" placeholder="{{placeholder}}" auto-focus = "true" bindinput="bindinput" bindconfirm="bindconfirm"/>
JS:
//点击确定确定
bindconfirm:function(){
console.log("点击了取消事件+++++");
}
以上是关于input 控件监听回车确认按钮。的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Bootstrap 模态和按钮制作可重复使用的确认控件?