addEventListener和removeEventListener是JavaScript中用于處理事件監聽的方法,它們通常會配對使用。
addEventListener用于向指定的元素添加事件監聽器,當指定的事件發生時,觸發指定的函數。
例如:
document.getElementById("myButton").addEventListener("click", myFunction);
removeEventListener用于移除先前添加的事件監聽器,以避免重復觸發事件。
例如:
document.getElementById("myButton").removeEventListener("click", myFunction);
在使用addEventListener添加事件監聽器后,最好在不需要監聽該事件時使用removeEventListener來移除監聽器,以避免出現不必要的事件觸發和性能問題。