码迷,mamicode.com
首页 > Web开发 > 详细

jquery绑定回车事件

时间:2018-06-09 20:25:51      阅读:419      评论:0      收藏:0      [点我收藏+]

标签:set   length   end   TE   UNC   input   The   info   data-   

 //回车事件绑定
    $(".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绑定回车事件

标签:set   length   end   TE   UNC   input   The   info   data-   

原文地址:https://www.cnblogs.com/james-roger/p/9160585.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!