美文网首页
监听键盘事件

监听键盘事件

作者: 路尔轩 | 来源:发表于2019-08-16 17:52 被阅读0次
    $(document).keyup(function(event){
     switch(event.keyCode) {
     case 27:
     alert("ESC");
     case 96:
     alert("ESC");
     }
    });
    

    相关文章

      网友评论

          本文标题:监听键盘事件

          本文链接:https://www.haomeiwen.com/subject/fwiqsctx.html