zoukankan      html  css  js  c++  java
  • 禁止文本框的回车事件触发表单提交

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

  • 相关阅读:
    sss
    sss
    sss
    sss
    sss
    sss
    sss
    线程池--相关接口
    NIO(3)--Selector
    SpringBoot--整合Mybatis+druid
  • 原文地址:https://www.cnblogs.com/latma/p/4158025.html
Copyright © 2011-2022 走看看