代码之家  ›  专栏  ›  技术社区  ›  Old Geezer

删除需要参数的事件侦听器

  •  0
  • Old Geezer  · 技术社区  · 6 年前

    我有:

    e.addEventListener("click",()=>{alert(this.innerText);});
    

    我需要把它取下来。

    如果我不使用匿名函数 removeEventListener ,如何通过 this 到命名函数?

    function f() { 
       //how do I access the "this"?
    }
    e.addEventListener("click", f);
    
    2 回复  |  直到 6 年前
        1
  •  1
  •   deceze    6 年前

    唯一的问题是,由于您是以内联方式声明函数,所以您没有任何函数句柄。您只需移动同一个声明并将其分配给一个变量:

    const cb = () => alert(this.innerText);
    e.addEventListener('click', cb);
    e.removeEventListener('click', cb);
    
        2
  •  0
  •   Tamás    6 年前

    我通常只是创建一个更友好的功能来工作。

    const listen = (el, ...args) => {
        el.addEventListener(...args);
        return{
            remove: () => el.removeEventListener(...args)
        };
    };
    

    所以你可以做像…

    const listener = listen(document, 'click', () => {
        console.log('click');
        listener.remove();
    });