美文网首页
全局键盘监听事件及销毁

全局键盘监听事件及销毁

作者: 等级7 | 来源:发表于2022-07-11 14:12 被阅读0次
     created() {
    let _this = this;
        document.onkeydown=function(e){
             if (window.event.keyCode == '27') {
                console.log("触发了监听")}}
      },
      destroyed() {    
    document.onkeydown = ''
      },
    

    相关文章

      网友评论

          本文标题:全局键盘监听事件及销毁

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