--- title: Window.releaseEvents() slug: Web/API/Window/releaseEvents tags: - API - DOM - DOM_0 - Method - Non-standard - Reference - Window - releaseEvents translation_of: Web/API/Window/releaseEvents ---
このウィンドウが指定された種類のイベントを捕捉することを解除します。
window.releaseEvents(eventType)
eventType
は、 Event.ABORT
, Event.BLUR
, Event.CLICK
, Event.CHANGE
, Event.DBLCLICK
, Event.DRAGDDROP
, Event.ERROR
, Event.FOCUS
, Event.KEYDOWN
, Event.KEYPRESS
, Event.KEYUP
, Event.LOAD
, Event.MOUSEDOWN
, Event.MOUSEMOVE
, Event.MOUSEOUT
, Event.MOUSEOVER
, Event.MOUSEUP
, Event.MOVE
, Event.RESET
, Event.RESIZE
, Event.SELECT
, Event.SUBMIT
, Event.UNLOAD
の値の組み合わせです。
window.releaseEvents(Event.KEYPRESS)
イベントのリストをこのメソッドに渡すには、 window.releaseEvents(Event.KEYPRESS | Event.KEYDOWN | Event.KEYUP)
のような構文を使用することに注意してください。
window.captureEvents
({{deprecated_inline}}) も参照してください。
どの仕様書にも含まれていません。
{{Compat("api.Window.releaseEvents")}}