联系我们
简单又实用的WordPress网站制作教学
当前位置:网站首页 > 网页前端技术 > 正文

jquery禁止回车触发表单提交 - Web前端

作者:98wpeu发布时间:2026-07-20分类:网页前端技术浏览:16


导读:复制代码代码如下:<FORMclass="form-inlinedefinewidthm20"action="/"method="get">        ...

复制代码 代码如下:
<FORMclass="form-inline definewidth m20" action="/" method="get"> 
            <inputtype="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正常

标签:表单Webjquery


网页前端技术排行
最近发表
网站分类
标签列表