码迷,mamicode.com
首页 > 其他好文 > 详细

回车事件

时间:2017-07-11 15:54:32      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:func   nbsp   and   color   ret   function   logs   read   事件   

$(document).ready(function () {
    $("#txt_JumpPager").keydown(function (e) {
      var curKey = e.which;
      if (curKey == 13) {
        $("#lbtn_JumpPager").click();
        return false;
      }
    });
});





//回车事件
$(document).keyup(function (event) {
    if (event.keyCode == 13) {
        $(".log-but").triggerHandler("click");
    }
});


以上两种方法都ok

 

回车事件

标签:func   nbsp   and   color   ret   function   logs   read   事件   

原文地址:http://www.cnblogs.com/C-dashazi/p/7150595.html

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