removeEventListener()

Обновлено: 27.03.2023

Визначення та використання

Метод removeEventListener()видаляє обробник події з документа.

приклад

Видалити обробник події "mousemove":

document.removeEventListener("mousemove", myFunction);

Синтаксис

document.removeEventListener(event, function, capture)

Параметри

ParameterDescription
eventRequired.
The name of the event to remove.
Do not use the "on" prefix.
use "click" instead of "onclick".

All HTML DOM events are listed in the:
HTML DOM Event Object Reference.
functionRequired.
The function to remove.
captureOptional (default = false).
true - Remove the handler from capturing.
false- Remove the handler from bubbling.

If the event handler was attached two times, one with capturing and one with bubbling, each must be removed separately.

Повернене значення

ЖОДНОГО

Підтримка браузера

document.removeEventListener

Посмотреть совместимость на Can I use?

document.removeEventListener