jquery禁止回车触发表单提交_技术学院_宜昌市隼壹珍商贸有限公司

您好,欢迎访问宜昌市隼壹珍商贸有限公司

400 890 5375
当前位置: 主页 > 新闻动态 > 技术学院

jquery禁止回车触发表单提交

发布时间:2026-01-18  |  点击率:

复制代码 代码如下:
<form class="form-inline definewidth m20" action="/" method="get"> 
            <input type="text" name="title" id="title"class="abc" value="">&nbsp;&nbsp; 
            <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正常

全国统一服务电话

400 890 5375

电子邮箱:879577@qq.com

公司地址:宜昌市西陵区黄河路5号三峡明珠10栋1051室

咨询微信

TEL:13680874598