window.addEventListener('message', this.myFunction, true);
// 自己的函数
myFunction(e) {
let eData = e.data;
// todo
},
// 移除 -- 不能使用匿名函数!!!
beforeDestroy() {
window.removeEventListener('message', this.myFunction, true);
},
window.addEventListener('message', this.myFunction, true);
// 自己的函数
myFunction(e) {
let eData = e.data;
// todo
},
// 移除 -- 不能使用匿名函数!!!
beforeDestroy() {
window.removeEventListener('message', this.myFunction, true);
},
本文标题:关于addEventListener和removeEventLi
本文链接:https://www.haomeiwen.com/subject/qqdknltx.html
网友评论