gpt4 book ai didi

javascript - 运行一次 window.onmousemove 函数

转载 作者:行者123 更新时间:2023-12-03 09:17:14 25 4
gpt4 key购买 nike

在我的 JavaScript 中,当某些事件发生时,我会运行一些警报函数。我想清除用户移动鼠标时的所有警报。我可以使用下面的函数清除所有内容,但我只想在警报运行时设置该函数,然后清除 window.onmousemove (所以我不会在鼠标移动的所有内容上运行 if 语句)。有没有简单的解决办法?

window.onmousemove = function() { 
if (alerts != null)
clearAlert.call();
};

最佳答案

使用.addEventListener().removeEventListener

function listener() {
if (alerts != null) {
clearAlert();
window.removeEventListener("mousemove", listener, false);
}
}

window.addEventListener("mousemove", listener, false);

关于javascript - 运行一次 window.onmousemove 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31924336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com