jquery绑定回车事件

Posted james-roger

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery绑定回车事件相关的知识,希望对你有一定的参考价值。

 //回车事件绑定
    $(".left-content").keyup(function(event){
        var theEvent = event || window.event;
        var code = theEvent.keyCode || theEvent.which || theEvent.charCode;
        if(event.keyCode ==13){
            $(".textbox-addon").click();
        }
    });
  //回车事件绑定
    $("#search-div").bind("keydown",function(e){
        // 兼容FF和IE和Opera
        var theEvent = e || window.event;
        var code = theEvent.keyCode || theEvent.which || theEvent.charCode;
        if (code == 13) {
            //回车执行查询
            $("#terminalList-search-btn").click();
        }
    });
<div id="search-div">
    <input type="hidden" id="shipInfo_edit_shipId" value="${shipId}">
      <fieldset>
        <legend>${message("ov.terminalInfo.search")}</legend>
        <form id="terminalList-search-form" class="search-form">
           
                <input type="text" class="easyui-textbox" name="terminalId" validtype="length[0,20]"/>
          
           
                <input type="text" class="easyui-textbox" name="number" validtype="length[0,20]"/>
          
        </form>
        <div class="search-item">
            <button id="terminalList-search-btn" class="easyui-linkbutton" data-options="iconCls:‘icon-search‘">${message("ov.search")}</button>
        </div>
      </fieldset>
</div>

 

以上是关于jquery绑定回车事件的主要内容,如果未能解决你的问题,请参考以下文章

jquery 绑定回车(Enter )事件

jQuery给input绑定回车事件

转发jQuery给input绑定回车事件

代码收藏系列--jquery--筛选器事件绑定技巧

jQuery实现回车触发登录按钮的功能

原生js如何绑定a连接点击事件?