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