function execScrollBottomFun (cb) {
。。。
}
export function execScrollBottomCb (cb) {
window.addEventListener('scroll', () => execScrollBottomFun(cb));
}
export function removeExecScrollBottomCb (cb) {
window.removeEventListener('scroll', () => execScrollBottomFun(cb));
}
如上代码,removeExecScrollBottomCb执行了无效,事件还是没有被移除。
这里主要的困惑是有参数cb,所以只能再包成匿名函数。
你的
removeExecScrollBottomCb
相当于新建了一个函数,然后试图从window
的监听列表里移除,当然是无效的。解决方案的核心:
addEventListener
的函数和removeEventListener
的函数一定要是一个函数。可以用全局变量、也可以自己保存。