Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

event.initEvent

概要

initEvent メソッドは document.createEvent によって作成された event の値を初期化するために使われます。

構文

event.initEvent(type,bubbles,cancelable) 
type
イベントの種類。
bubbles
イベントチェーンを通じてイベントを浮上させるかどうかを示す真偽値 (bubbles 参照)。
cancelable
イベントがキャンセル可能かどうかを示す真偽値 (cancelable 参照)。

// 浮上し、キャンセル不可能なクリックイベントを作成
event.initEvent("click", true, false);

注意点

この方法で初期化されるイベントは、document.createEvent メソッドで作成されたものでなければなりません。initEvent によるイベントの設定は、イベントを 割り当てる 前に呼び出す必要があります。

仕様書

DOM Level 2 Events: Event.initEvent

 

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, jsx, Kohei
 最終更新者: jsx,