Home > Web Front-end > JS Tutorial > body text

Why Isn\'t My JavaScript removeEventListener Working?

Linda Hamilton
Release: 2024-11-02 17:04:03
Original
764 people have browsed it

Why Isn't My JavaScript removeEventListener Working?

Javascript removeEventListener Not Working

When attempting to add and remove event listeners to an element in Javascript, the removeEventListener function may not work as expected. This issue arises when the anonymous function provided as the second argument to removeEventListener is not the same function reference that was originally assigned to the addEventListener.

Understanding the Issue

In the provided code, the event listeners are attached and removed using anonymous functions:

area.addEventListener('click', function(event) { ... }, true);
area.removeEventListener('click', function(event) { ... }, true);
Copy after login

However, these anonymous functions are completely different objects. Even though they may perform the same tasks, they are not the same reference.

Solution

To correctly remove an event listener, you must provide the same function reference that was used to add the listener. Define a named function outside the addEventListener and removeEventListener calls:

function foo(event) {
  app.addSpot(event.clientX, event.clientY);
  app.addFlag = 1;
}
area.addEventListener('click', foo, true);
area.removeEventListener('click', foo, true);
Copy after login

By doing this, the removeEventListener function recognizes the function reference that was initially attached and successfully detaches the event listener.

The above is the detailed content of Why Isn\'t My JavaScript removeEventListener Working?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!