全局键盘监听事件及销毁
2022-07-11 本文已影响0人
等级7
created() {
let _this = this;
document.onkeydown=function(e){
if (window.event.keyCode == '27') {
console.log("触发了监听")}}
},
destroyed() {
document.onkeydown = ''
},
created() {
let _this = this;
document.onkeydown=function(e){
if (window.event.keyCode == '27') {
console.log("触发了监听")}}
},
destroyed() {
document.onkeydown = ''
},