当前位置: 移动技术网 > IT编程>开发语言>JavaScript > jquery禁止回车触发表单提交

jquery禁止回车触发表单提交

2019年03月27日  | 移动技术网IT编程  | 我要评论

jquery禁止回车触发表单提交。

代码如下:


<form class="form-inline definewidth m20" action="/" method="get"> 
            <input type="text" name="title" id="title"class="abc" value="">   
            <button type="submit" class="btn" style="margin-right:20px">查询</button>
            <select name="school_type" id="school_type">
</form>
<td style="width:90px; height:24px; text-align:center"><input   type="text" name="test" value="" class="a"></td>

 

test文本框的回车事件会触发上面表单的提交,这是的默认行为,要禁止自动提交,在文本框里取消默认事件。

 

代码如下:


$('.a').keypress(function(e){
            if(e.keycode==13){
                e.preventdefault();
            }

 

测试过ie10 ff29正常

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网