×

jquery禁止回车触发表单提交

作者:Terry2017.02.05来源:Web前端之家浏览:11160评论:0
关键词:JQueryJS

复制代码 代码如下:

<form class="form-inline definewidth m20" action="/"> 
            <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正常

您的支持是我们创作的动力!
温馨提示:本文作者系Terry ,经Web前端之家编辑修改或补充,转载请注明出处和本文链接:
https://jiangweishan.com/article/svg1486224000782.html

网友评论文明上网理性发言已有0人参与

发表评论: