Vue中全局监听键盘事件

FLowUs邀请链接:https://flowus.cn/login?code=AXNU63
FlowUs邀请码:AXNU63


全局监听enter键,是把监听事件绑定到document上
常用的keyCode键盘编码在这里:https://www.cnblogs.com/wbyixx/p/12029508.html

created: function() {
        var _this = this;
        document.onkeydown = function(e) {
            let key = window.event.keyCode;
            if (key == 13) {
                _this.submit();
            }
        };
    },
methods: {
        submit: function() {
            alert("监听到enter键");
        },
   }
posted @ 2019-12-12 15:53  wbytts  阅读(3647)  评论(0编辑  收藏  举报