欢迎来到代码驿站!

jquery

当前位置:首页 > 网页前端 > jquery

jquery禁止回车触发表单提交

时间:2021-01-25 10:29:35|栏目:jquery|点击:

复制代码 代码如下:

<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正常

上一篇:修复jQuery tablesorter无法正确排序的bug(加千分位数字后)

栏    目:jquery

下一篇:jquery.cookie用法详细解析

本文标题:jquery禁止回车触发表单提交

本文地址:http://www.codeinn.net/misctech/51040.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有