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

jQuery实现按Enter键触发事件?

时间:2014-11-06 17:06:18      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   sp   div   on   log   

按Enter触发

 $(function(){
    document.onkeydown = function(e){  
      var ev = document.all ? window.event : e;
      if(ev.keyCode==13) {// 如(ev.ctrlKey && ev.keyCode==13)为ctrl+Center 触发
          alert("huiche");
      }
    }
 });

按Enter触发

$(function () {
           document.onkeydown = function (event) {
               var e = event || window.event || arguments.callee.caller.arguments[0];
               if (e && e.keyCode == 13) {
                   //to do something;
               }
           };
       });

 

单击按钮或按Enter键触发事件

<script> 
    $(function(){
        $(#button).click(function(){
            $(#button).attr(disabled,disabled);
        });
        $(body).keydown(function(){
            if (event.keyCode == 13) {    enter 键值 为13
                $(#button).click();
            };            
            
        });

    })
</script> 

 

jQuery实现按Enter键触发事件?

标签:style   blog   io   color   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/jiechn/p/4079136.html

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