From 78fde80b73594eab872a2f4d14b445c4a4c68cff Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 13 Jul 2021 02:38:02 +0900 Subject: Web/Guide/Events/Creating_and_triggering_events を更新 (#1372) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Web/Guide/Events/Creating_and_triggering_events を更新 - conflicting 版は古いので削除 - 2021/04/23 時点の英語版に同期 * 追加修正 * 追加修正 * リダイレクトを修正 --- files/ja/_redirects.txt | 2 +- files/ja/_wikihistory.json | 7 ---- .../creating_and_triggering_events/index.html | 29 --------------- .../creating_and_triggering_events/index.html | 41 +++++++++++----------- 4 files changed, 22 insertions(+), 57 deletions(-) delete mode 100644 files/ja/conflicting/web/guide/events/creating_and_triggering_events/index.html (limited to 'files/ja') diff --git a/files/ja/_redirects.txt b/files/ja/_redirects.txt index 13422b8d17..6210d112d9 100644 --- a/files/ja/_redirects.txt +++ b/files/ja/_redirects.txt @@ -1406,7 +1406,7 @@ /ja/docs/DOM/console.log /ja/docs/Web/API/Console/log /ja/docs/DOM/console.time /ja/docs/Web/API/Console/time /ja/docs/DOM/console.timeEnd /ja/docs/Web/API/Console/timeEnd -/ja/docs/DOM/dispatchEvent_example /ja/docs/conflicting/Web/Guide/Events/Creating_and_triggering_events +/ja/docs/DOM/dispatchEvent_example /ja/docs/Web/Events/Creating_and_triggering_events /ja/docs/DOM/document /ja/docs/Web/API/Document /ja/docs/DOM/document.URL /ja/docs/Web/API/Document/URL /ja/docs/DOM/document.activeElement /ja/docs/Web/API/Document/activeElement diff --git a/files/ja/_wikihistory.json b/files/ja/_wikihistory.json index 0c6767c094..83ee157325 100644 --- a/files/ja/_wikihistory.json +++ b/files/ja/_wikihistory.json @@ -48576,13 +48576,6 @@ "Okome" ] }, - "conflicting/Web/Guide/Events/Creating_and_triggering_events": { - "modified": "2019-03-23T23:36:25.236Z", - "contributors": [ - "soumya", - "ethertank" - ] - }, "conflicting/Web/Guide/Introduction_to_Web_development": { "modified": "2019-03-24T00:07:37.444Z", "contributors": [ diff --git a/files/ja/conflicting/web/guide/events/creating_and_triggering_events/index.html b/files/ja/conflicting/web/guide/events/creating_and_triggering_events/index.html deleted file mode 100644 index cabf4007c9..0000000000 --- a/files/ja/conflicting/web/guide/events/creating_and_triggering_events/index.html +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: dispatchEvent example -slug: conflicting/Web/Guide/Events/Creating_and_triggering_events -tags: - - DOM - - Gecko - - Gecko DOM Reference -translation_of: Web/Guide/Events/Creating_and_triggering_events -translation_of_original: Web/Guide/Events/Event_dispatching_example -original_slug: DOM/dispatchEvent_example ---- -
- {{ApiRef}}
-

次の例では DOM メソッドを使用してチェックボックスのクリックをシミュレート(※スクリプトでクリックイベントを生成)しています。

-
function simulateClick() {
-  var evt = document.createEvent("MouseEvents");
-  evt.initMouseEvent("click", true, true, window,
-    0, 0, 0, 0, 0, false, false, false, false, 0, null);
-  var cb = document.getElementById("checkbox");
-  var canceled = !cb.dispatchEvent(evt);
-  if(canceled) {
-    // A handler called preventDefault
-    alert("canceled");
-  } else {
-    // None of the handlers called preventDefault
-    alert("not canceled");
-  }
-}
-

実際の表示を確認

diff --git a/files/ja/web/events/creating_and_triggering_events/index.html b/files/ja/web/events/creating_and_triggering_events/index.html index 8543bc7c77..cfa49f9c46 100644 --- a/files/ja/web/events/creating_and_triggering_events/index.html +++ b/files/ja/web/events/creating_and_triggering_events/index.html @@ -13,11 +13,11 @@ original_slug: Web/Events/Creating_and_triggering_events ---

この記事では、 DOM イベントを作成して処理する方法を説明します。このようなイベントは、一般に、ブラウザー自体によって起動されたイベントとは対照的に、合成イベントと呼ばれます。

-

カスタムイベントを作成する

+

カスタムイベントを作成する

-

イベントは、次のように {{domxref("Event")}} コンストラクターを使用して作成できます。

+

イベントは、次のように Event コンストラクターを使用して作成できます。

-
var event = new Event('build');
+
const event = new Event('build');
 
 // Listen for the event.
 elem.addEventListener('build', function (e) { /* ... */ }, false);
@@ -25,17 +25,17 @@ elem.addEventListener('build', function (e) { /* ... */ }, false);
 // Dispatch the event.
 elem.dispatchEvent(event);
-

上記のコード例は {{domxref("EventTarget.dispatchEvent()")}} メソッドを使用します。

+

上記のコード例は EventTarget.dispatchEvent() メソッドを使用します。

-

このコンストラクターは、ほとんどの最新のブラウザーでサポートされています (Internet Explorer は例外です)。もっと冗長的なアプローチ (Internet Explorer で動作するもの) は、下記の古い方法を参照して下さい。

+

このコンストラクターは、ほとんどの最新のブラウザーでサポートされています (Internet Explorer は例外です)。もっと冗長的なアプローチ (Internet Explorer で動作するもの) は、下記の古い方法を参照して下さい。

-

カスタムデータの追加 – CustomEvent()

+

カスタムデータの追加 – CustomEvent()

イベントオブジェクトにデータを追加するには、CustomEvent インターフェイスが存在し、detail プロパティを使用してカスタムデータを渡すことができます。

たとえば、イベントは次のように作成できます。

-
var event = new CustomEvent('build', { detail: elem.dataset.time });
+
const event = new CustomEvent('build', { detail: elem.dataset.time });

これにより、イベントリスナー内の追加データにアクセスすることができます。

@@ -44,12 +44,12 @@ elem.dispatchEvent(event);
} -

古い方法

+

古い方法

イベントを作成する古いアプローチでは、 Java に触発された API が使用されます。以下に例を示します。

// イベントの作成
-var event = document.createEvent('Event');
+const event = document.createEvent('Event');
 
 // イベントの名前を 'build' と定義する
 event.initEvent('build', true, true);
@@ -64,7 +64,7 @@ elem.dispatchEvent(event);
 
 
-

イベントのバブリング

+

イベントのバブリング

子要素からイベントを起動させ、祖先要素がそれを、任意でデータも、受け取りたい場合がよくあります。

@@ -89,7 +89,7 @@ form.addEventListener('awesome', e => console.log(e.detail.text())); textarea.addEventListener('input', e => e.target.dispatchEvent(eventAwesome)); -

イベントの動的な生成と処理

+

イベントの動的な生成と処理

要素はまだ作成されていないイベントを待ち受けすることができます。

@@ -110,18 +110,19 @@ textarea.addEventListener('input', function() { }); -

ビルトインイベントの起動

+

ビルトインイベントの起動

-

この例では、 DOM メソッドを使用してチェックボックスでクリック (プログラムでクリックイベントを生成する) をシミュレートする方法を示します。デモを見る

+

この例では、 DOM メソッドを使用してチェックボックスでクリック (プログラムでクリックイベントを生成する) をシミュレートする方法を示します。デモを見る

function simulateClick() {
-  var event = new MouseEvent('click', {
+  const event = new MouseEvent('click', {
     view: window,
     bubbles: true,
     cancelable: true
   });
-  var cb = document.getElementById('checkbox');
-  var cancelled = !cb.dispatchEvent(event);
+  const cb = document.getElementById('checkbox');
+  const cancelled = !cb.dispatchEvent(event);
+
   if (cancelled) {
     // A handler called preventDefault.
     alert("cancelled");
@@ -131,7 +132,7 @@ textarea.addEventListener('input', function() {
   }
 }
-

関連情報

+

関連情報