Vue中全局监听键盘事件


全局监听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键");
        },
   }


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM