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/focusin_event/index.md | 109 ++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 files/ja/web/api/element/focusin_event/index.md (limited to 'files/ja/web/api/element/focusin_event/index.md') 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")}}

+ +

関連情報

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