批量移除dom上注册的事件

目录

一、问题

二、解决方法

三、总结


一、问题

1.在window上注册了事件,想要批量移除注册的事件,发现移除不了(也不知道什么时候会被自动移除@__@)

二、解决方法

1.添加事件时增加同一个AbortController生成的 signal标识。使用AbortController.abort移除

    let control=new AbortController();
    let {signal}=control;
    //添加标别位
    window.addEventListener('test',()=>{console.log("test")},{signal})
    window.addEventListener('test',()=>{console.log("test2")},{signal})
    //同时移除上面的两个事件
    control.abort()

2.具体结果如下图所示

批量移除dom上注册的事件_第1张图片

三、总结

1.我也不知道之前没有加signal注册的事件什么时候会被自动清除@——@;(等知道结论时再来追述)

2.需求真的是无穷无尽呀!

/*

希望对你有帮助!

如有错误,欢迎指正,非常感谢!

*/

你可能感兴趣的:(前端,javascript,vue.js)