From e9eae2d4257e8e561a6234c9a0baf1bd1166f707 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 9 Jan 2022 16:15:16 +0900 Subject: FocusEvent 関係のインターフェイス・イベントの記事を変換準備 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/api/element/blur_event/index.html | 140 --------------------- files/ja/web/api/element/blur_event/index.md | 140 +++++++++++++++++++++ files/ja/web/api/element/focus_event/index.html | 137 -------------------- files/ja/web/api/element/focus_event/index.md | 137 ++++++++++++++++++++ files/ja/web/api/element/focusin_event/index.html | 109 ---------------- files/ja/web/api/element/focusin_event/index.md | 109 ++++++++++++++++ files/ja/web/api/element/focusout_event/index.html | 110 ---------------- files/ja/web/api/element/focusout_event/index.md | 110 ++++++++++++++++ 8 files changed, 496 insertions(+), 496 deletions(-) delete mode 100644 files/ja/web/api/element/blur_event/index.html create mode 100644 files/ja/web/api/element/blur_event/index.md delete mode 100644 files/ja/web/api/element/focus_event/index.html create mode 100644 files/ja/web/api/element/focus_event/index.md delete mode 100644 files/ja/web/api/element/focusin_event/index.html create mode 100644 files/ja/web/api/element/focusin_event/index.md delete mode 100644 files/ja/web/api/element/focusout_event/index.html create mode 100644 files/ja/web/api/element/focusout_event/index.md (limited to 'files/ja/web/api/element') diff --git a/files/ja/web/api/element/blur_event/index.html b/files/ja/web/api/element/blur_event/index.html deleted file mode 100644 index a91dd6fcc8..0000000000 --- a/files/ja/web/api/element/blur_event/index.html +++ /dev/null @@ -1,140 +0,0 @@ ---- -title: 'Element: blur イベント' -slug: Web/API/Element/blur_event -tags: - - API - - DOM - - Element - - Event - - FocusEvent - - Reference - - blur - - onblur - - イベント -translation_of: Web/API/Element/blur_event ---- -
{{APIRef}}
- -

blur イベントは、要素がフォーカスを失ったときに発生します。このイベントと {{domxref("Element/focusout_event", "focusout")}} との違いは、 focusoutバブリングを行うのに対し blur は行わないことです。

- -

blur の反対は {{domxref("Element/focus_event", "focus")}} です。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
バブリングなし
キャンセル不可
インターフェイス{{DOMxRef("FocusEvent")}}
イベントハンドラープロパティ{{domxref("GlobalEventHandlers/onblur", "onblur")}}
同期 / 非同期同期
Composedはい
- -

- -

簡単な例

- -

HTML

- -
<form id="form">
-  <input type="text" placeholder="text input">
-  <input type="password" placeholder="password">
-</form>
- -

JavaScript

- -
const password = document.querySelector('input[type="password"]');
-
-password.addEventListener('focus', (event) => {
-  event.target.style.background = 'pink';
-});
-
-password.addEventListener('blur', (event) => {
-  event.target.style.background = '';
-});
- -

結果

- -

{{EmbedLiveSample("Simple_example", '100%', '50px')}}

- -

イベント委譲

- -

このイベントのイベント委譲を実装する方法は二つあります。 {{Event("focusout")}} イベントを使用するか、 {{domxref("EventTarget.addEventListener()", "addEventListener()")}} の useCapture 引数に true を設定するかです。

- -

HTML

- -
<form id="form">
-  <input type="text" placeholder="text input">
-  <input type="password" placeholder="password">
-</form>
- -

JavaScript

- -
const form = document.getElementById('form');
-
-form.addEventListener('focus', (event) => {
-  event.target.style.background = 'pink';
-}, true);
-
-form.addEventListener('blur', (event) => {
-  event.target.style.background = '';
-}, true);
- -

結果

- -

{{EmbedLiveSample("Event_delegation", '100%', '50px')}}

- -

仕様書

- - - - - - - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("UI Events", "#event-type-blur")}}{{Spec2("UI Events")}}Added info that this event is composed.
{{SpecName("DOM3 Events", "#event-type-blur")}}{{Spec2("DOM3 Events")}}初回定義
- -

ブラウザーの互換性

- -

{{Compat("api.Element.blur_event")}}

- -

このイベントが処理されている間、 {{DOMxRef("Document.activeElement")}} の値はブラウザーによって異なります ({{bug(452307)}})。 IE10 はフォーカスが移動する先の要素を設定しますが、 Firefox および Chrome はふつう、文書の body を設定します。

- -

関連情報

- - diff --git a/files/ja/web/api/element/blur_event/index.md b/files/ja/web/api/element/blur_event/index.md new file mode 100644 index 0000000000..a91dd6fcc8 --- /dev/null +++ b/files/ja/web/api/element/blur_event/index.md @@ -0,0 +1,140 @@ +--- +title: 'Element: blur イベント' +slug: Web/API/Element/blur_event +tags: + - API + - DOM + - Element + - Event + - FocusEvent + - Reference + - blur + - onblur + - イベント +translation_of: Web/API/Element/blur_event +--- +
{{APIRef}}
+ +

blur イベントは、要素がフォーカスを失ったときに発生します。このイベントと {{domxref("Element/focusout_event", "focusout")}} との違いは、 focusoutバブリングを行うのに対し blur は行わないことです。

+ +

blur の反対は {{domxref("Element/focus_event", "focus")}} です。

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
バブリングなし
キャンセル不可
インターフェイス{{DOMxRef("FocusEvent")}}
イベントハンドラープロパティ{{domxref("GlobalEventHandlers/onblur", "onblur")}}
同期 / 非同期同期
Composedはい
+ +

+ +

簡単な例

+ +

HTML

+ +
<form id="form">
+  <input type="text" placeholder="text input">
+  <input type="password" placeholder="password">
+</form>
+ +

JavaScript

+ +
const password = document.querySelector('input[type="password"]');
+
+password.addEventListener('focus', (event) => {
+  event.target.style.background = 'pink';
+});
+
+password.addEventListener('blur', (event) => {
+  event.target.style.background = '';
+});
+ +

結果

+ +

{{EmbedLiveSample("Simple_example", '100%', '50px')}}

+ +

イベント委譲

+ +

このイベントのイベント委譲を実装する方法は二つあります。 {{Event("focusout")}} イベントを使用するか、 {{domxref("EventTarget.addEventListener()", "addEventListener()")}} の useCapture 引数に true を設定するかです。

+ +

HTML

+ +
<form id="form">
+  <input type="text" placeholder="text input">
+  <input type="password" placeholder="password">
+</form>
+ +

JavaScript

+ +
const form = document.getElementById('form');
+
+form.addEventListener('focus', (event) => {
+  event.target.style.background = 'pink';
+}, true);
+
+form.addEventListener('blur', (event) => {
+  event.target.style.background = '';
+}, true);
+ +

結果

+ +

{{EmbedLiveSample("Event_delegation", '100%', '50px')}}

+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("UI Events", "#event-type-blur")}}{{Spec2("UI Events")}}Added info that this event is composed.
{{SpecName("DOM3 Events", "#event-type-blur")}}{{Spec2("DOM3 Events")}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("api.Element.blur_event")}}

+ +

このイベントが処理されている間、 {{DOMxRef("Document.activeElement")}} の値はブラウザーによって異なります ({{bug(452307)}})。 IE10 はフォーカスが移動する先の要素を設定しますが、 Firefox および Chrome はふつう、文書の body を設定します。

+ +

関連情報

+ + diff --git a/files/ja/web/api/element/focus_event/index.html b/files/ja/web/api/element/focus_event/index.html deleted file mode 100644 index c087c896b0..0000000000 --- a/files/ja/web/api/element/focus_event/index.html +++ /dev/null @@ -1,137 +0,0 @@ ---- -title: 'Element: focus イベント' -slug: Web/API/Element/focus_event -tags: - - API - - DOM - - Element - - Event - - Focus - - FocusEvent - - Reference - - イベント -translation_of: Web/API/Element/focus_event ---- -
{{APIRef}}
- -

focus イベントは、要素がフォーカスを受け取ったときに発生します。このイベントと {{domxref("Element/focusin_event", "focusin")}} との違いは、 focusin がバブリングを行うのに対し focus は行わないことです。

- -

focus の反対は {{domxref("Element/blur_event", "blur")}} です。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
バブリングなし
キャンセル可能いいえ
インターフェイス{{DOMxRef("FocusEvent")}}
イベントハンドラープロパティ{{domxref("GlobalEventHandlers/onfocus", "onfocus")}}
同期 / 非同期同期
Composedはい
- -

- -

簡単な例

- -

HTML

- -
<form id="form">
-  <input type="text" placeholder="text input">
-  <input type="password" placeholder="password">
-</form>
- -

JavaScript

- -
const password = document.querySelector('input[type="password"]');
-
-password.addEventListener('focus', (event) => {
-  event.target.style.background = 'pink';
-});
-
-password.addEventListener('blur', (event) => {
-  event.target.style.background = '';
-});
- -

結果

- -

{{EmbedLiveSample("Simple_example", '100%', '50px')}}

- -

イベント委譲

- -

このイベントのイベント委譲を実装する方法は二つあります。 {{Event("focusout")}} イベントを使用するか、 {{domxref("EventTarget.addEventListener()", "addEventListener()")}} の useCapture 引数に true を設定するかです。

- -

HTML

- -
<form id="form">
-  <input type="text" placeholder="text input">
-  <input type="password" placeholder="password">
-</form>
- -

JavaScript

- -
const form = document.getElementById('form');
-
-form.addEventListener('focus', (event) => {
-  event.target.style.background = 'pink';
-}, true);
-
-form.addEventListener('blur', (event) => {
-  event.target.style.background = '';
-}, true);
- -

結果

- -

{{EmbedLiveSample("Event_delegation", '100%', '50px')}}

- -

仕様書

- - - - - - - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("UI Events", "#event-type-focus")}}{{Spec2("UI Events")}}Added info that this event is composed.
{{SpecName("DOM3 Events", "#event-type-focus")}}{{Spec2("DOM3 Events")}}初回定義
- -

ブラウザーの対応

- -

{{Compat("api.Element.focus_event")}}

- -

関連情報

- - diff --git a/files/ja/web/api/element/focus_event/index.md b/files/ja/web/api/element/focus_event/index.md new file mode 100644 index 0000000000..c087c896b0 --- /dev/null +++ b/files/ja/web/api/element/focus_event/index.md @@ -0,0 +1,137 @@ +--- +title: 'Element: focus イベント' +slug: Web/API/Element/focus_event +tags: + - API + - DOM + - Element + - Event + - Focus + - FocusEvent + - Reference + - イベント +translation_of: Web/API/Element/focus_event +--- +
{{APIRef}}
+ +

focus イベントは、要素がフォーカスを受け取ったときに発生します。このイベントと {{domxref("Element/focusin_event", "focusin")}} との違いは、 focusin がバブリングを行うのに対し focus は行わないことです。

+ +

focus の反対は {{domxref("Element/blur_event", "blur")}} です。

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
バブリングなし
キャンセル可能いいえ
インターフェイス{{DOMxRef("FocusEvent")}}
イベントハンドラープロパティ{{domxref("GlobalEventHandlers/onfocus", "onfocus")}}
同期 / 非同期同期
Composedはい
+ +

+ +

簡単な例

+ +

HTML

+ +
<form id="form">
+  <input type="text" placeholder="text input">
+  <input type="password" placeholder="password">
+</form>
+ +

JavaScript

+ +
const password = document.querySelector('input[type="password"]');
+
+password.addEventListener('focus', (event) => {
+  event.target.style.background = 'pink';
+});
+
+password.addEventListener('blur', (event) => {
+  event.target.style.background = '';
+});
+ +

結果

+ +

{{EmbedLiveSample("Simple_example", '100%', '50px')}}

+ +

イベント委譲

+ +

このイベントのイベント委譲を実装する方法は二つあります。 {{Event("focusout")}} イベントを使用するか、 {{domxref("EventTarget.addEventListener()", "addEventListener()")}} の useCapture 引数に true を設定するかです。

+ +

HTML

+ +
<form id="form">
+  <input type="text" placeholder="text input">
+  <input type="password" placeholder="password">
+</form>
+ +

JavaScript

+ +
const form = document.getElementById('form');
+
+form.addEventListener('focus', (event) => {
+  event.target.style.background = 'pink';
+}, true);
+
+form.addEventListener('blur', (event) => {
+  event.target.style.background = '';
+}, true);
+ +

結果

+ +

{{EmbedLiveSample("Event_delegation", '100%', '50px')}}

+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("UI Events", "#event-type-focus")}}{{Spec2("UI Events")}}Added info that this event is composed.
{{SpecName("DOM3 Events", "#event-type-focus")}}{{Spec2("DOM3 Events")}}初回定義
+ +

ブラウザーの対応

+ +

{{Compat("api.Element.focus_event")}}

+ +

関連情報

+ + diff --git a/files/ja/web/api/element/focusin_event/index.html b/files/ja/web/api/element/focusin_event/index.html deleted file mode 100644 index 82f3fada9f..0000000000 --- a/files/ja/web/api/element/focusin_event/index.html +++ /dev/null @@ -1,109 +0,0 @@ ---- -title: 'Element: focusin イベント' -slug: Web/API/Element/focusin_event -tags: - - API - - DOM - - Element - - Event - - FocusEvent - - Reference - - focusin - - イベント -translation_of: Web/API/Element/focusin_event ---- -
{{APIRef}}
- -

focusin イベントは、要素がフォーカスを受け取ろうとしているときに発生します。このイベントと {{domxref("Element/focus_event", "focus")}} との主な違いは、 focusin がバブリングを行うのに対し focus は行わないことです。

- -

focusin の反対は {{domxref("Element/focusout_event", "focusout")}} です。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
バブリングあり
キャンセル可能いいえ
インターフェイス{{DOMxRef("FocusEvent")}}
イベントハンドラープロパティ{{domxref("GlobalEventHandlers/onfocusin", "onfocusin")}}
同期 / 非同期同期
Composedはい
- -

- -

ライブデモ

- -

HTML

- -
<form id="form">
-  <input type="text" placeholder="text input">
-  <input type="password" placeholder="password">
-</form>
- -

JavaScript

- -
const form = document.getElementById('form');
-
-form.addEventListener('focusin', (event) => {
-  event.target.style.background = 'pink';
-});
-
-form.addEventListener('focusout', (event) => {
-  event.target.style.background = '';
-});
- -

結果

- -

{{EmbedLiveSample("Live_example", '100%', '50px')}}

- -

仕様書

- - - - - - - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("UI Events", "#event-type-focusin")}}{{Spec2("UI Events")}}Added info that this event is composed.
{{SpecName("DOM3 Events", "#event-type-focusin")}}{{Spec2("DOM3 Events")}}初回定義
- -

ブラウザーの対応

- -

{{Compat("api.Element.focusin_event")}}

- -

関連情報

- - diff --git a/files/ja/web/api/element/focusin_event/index.md b/files/ja/web/api/element/focusin_event/index.md new file mode 100644 index 0000000000..82f3fada9f --- /dev/null +++ b/files/ja/web/api/element/focusin_event/index.md @@ -0,0 +1,109 @@ +--- +title: 'Element: focusin イベント' +slug: Web/API/Element/focusin_event +tags: + - API + - DOM + - Element + - Event + - FocusEvent + - Reference + - focusin + - イベント +translation_of: Web/API/Element/focusin_event +--- +
{{APIRef}}
+ +

focusin イベントは、要素がフォーカスを受け取ろうとしているときに発生します。このイベントと {{domxref("Element/focus_event", "focus")}} との主な違いは、 focusin がバブリングを行うのに対し focus は行わないことです。

+ +

focusin の反対は {{domxref("Element/focusout_event", "focusout")}} です。

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
バブリングあり
キャンセル可能いいえ
インターフェイス{{DOMxRef("FocusEvent")}}
イベントハンドラープロパティ{{domxref("GlobalEventHandlers/onfocusin", "onfocusin")}}
同期 / 非同期同期
Composedはい
+ +

+ +

ライブデモ

+ +

HTML

+ +
<form id="form">
+  <input type="text" placeholder="text input">
+  <input type="password" placeholder="password">
+</form>
+ +

JavaScript

+ +
const form = document.getElementById('form');
+
+form.addEventListener('focusin', (event) => {
+  event.target.style.background = 'pink';
+});
+
+form.addEventListener('focusout', (event) => {
+  event.target.style.background = '';
+});
+ +

結果

+ +

{{EmbedLiveSample("Live_example", '100%', '50px')}}

+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("UI Events", "#event-type-focusin")}}{{Spec2("UI Events")}}Added info that this event is composed.
{{SpecName("DOM3 Events", "#event-type-focusin")}}{{Spec2("DOM3 Events")}}初回定義
+ +

ブラウザーの対応

+ +

{{Compat("api.Element.focusin_event")}}

+ +

関連情報

+ + diff --git a/files/ja/web/api/element/focusout_event/index.html b/files/ja/web/api/element/focusout_event/index.html deleted file mode 100644 index 0e0e661a6b..0000000000 --- a/files/ja/web/api/element/focusout_event/index.html +++ /dev/null @@ -1,110 +0,0 @@ ---- -title: 'Element: focusout イベント' -slug: Web/API/Element/focusout_event -tags: - - API - - DOM - - Element - - Event - - FocusEvent - - Reference - - focusout - - onfocusout - - イベント -translation_of: Web/API/Element/focusout_event ---- -
{{APIRef}}
- -

focusout イベントは、要素がフォーカスを失おうとしているときに発生します。このイベントと {{domxref("Element/blur_event", "blur")}} との主な違いは、 focusoutバブリングを行うのに対し blur は行わないことです。

- -

focusout の反対は {{domxref("Element/focusin_event", "focusin")}} です。

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
バブリングあり
キャンセル不可
インターフェイス{{DOMxRef("FocusEvent")}}
イベントハンドラープロパティ{{domxref("GlobalEventHandlers/onfocusout", "onfocusout")}}
同期 / 非同期同期
Composedはい
- -

- -

ライブデモ

- -

HTML

- -
<form id="form">
-  <input type="text" placeholder="text input">
-  <input type="password" placeholder="password">
-</form>
- -

JavaScript

- -
const form = document.getElementById('form');
-
-form.addEventListener('focusin', (event) => {
-  event.target.style.background = 'pink';
-});
-
-form.addEventListener('focusout', (event) => {
-  event.target.style.background = '';
-});
- -

結果

- -

{{EmbedLiveSample("Live_example", '100%', '50px')}}

- -

仕様書

- - - - - - - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("UI Events", "#event-type-focusout")}}{{Spec2("UI Events")}}Added info that this event is composed.
{{SpecName("DOM3 Events", "#event-type-focusout")}}{{Spec2("DOM3 Events")}}初回定義
- -

ブラウザーの互換性

- -

{{Compat("api.Element.focusout_event")}}

- -

関連情報

- - diff --git a/files/ja/web/api/element/focusout_event/index.md b/files/ja/web/api/element/focusout_event/index.md new file mode 100644 index 0000000000..0e0e661a6b --- /dev/null +++ b/files/ja/web/api/element/focusout_event/index.md @@ -0,0 +1,110 @@ +--- +title: 'Element: focusout イベント' +slug: Web/API/Element/focusout_event +tags: + - API + - DOM + - Element + - Event + - FocusEvent + - Reference + - focusout + - onfocusout + - イベント +translation_of: Web/API/Element/focusout_event +--- +
{{APIRef}}
+ +

focusout イベントは、要素がフォーカスを失おうとしているときに発生します。このイベントと {{domxref("Element/blur_event", "blur")}} との主な違いは、 focusoutバブリングを行うのに対し blur は行わないことです。

+ +

focusout の反対は {{domxref("Element/focusin_event", "focusin")}} です。

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
バブリングあり
キャンセル不可
インターフェイス{{DOMxRef("FocusEvent")}}
イベントハンドラープロパティ{{domxref("GlobalEventHandlers/onfocusout", "onfocusout")}}
同期 / 非同期同期
Composedはい
+ +

+ +

ライブデモ

+ +

HTML

+ +
<form id="form">
+  <input type="text" placeholder="text input">
+  <input type="password" placeholder="password">
+</form>
+ +

JavaScript

+ +
const form = document.getElementById('form');
+
+form.addEventListener('focusin', (event) => {
+  event.target.style.background = 'pink';
+});
+
+form.addEventListener('focusout', (event) => {
+  event.target.style.background = '';
+});
+ +

結果

+ +

{{EmbedLiveSample("Live_example", '100%', '50px')}}

+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("UI Events", "#event-type-focusout")}}{{Spec2("UI Events")}}Added info that this event is composed.
{{SpecName("DOM3 Events", "#event-type-focusout")}}{{Spec2("DOM3 Events")}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("api.Element.focusout_event")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf