removeEventListener()
Обновлено: 27.03.2023
Визначення та використання
Метод removeEventListener()
видаляє обробник події з документа.
приклад
Видалити обробник події "mousemove":
document.removeEventListener("mousemove", myFunction);
Синтаксис
document.removeEventListener(event, function, capture)
Параметри
Parameter | Description |
event | Required. 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. |
function | Required. The function to remove. |
capture | Optional (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. |
Повернене значення
ЖОДНОГО |