From 3ed3d6528819a57304ee23f70096c6b9730a8467 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 9 Jan 2022 23:44:08 +0900 Subject: 2021/09/19 時点の英語版に同期 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/api/element/focusin_event/index.md | 142 +++++++++++------------- 1 file changed, 64 insertions(+), 78 deletions(-) (limited to 'files/ja/web/api/element') diff --git a/files/ja/web/api/element/focusin_event/index.md b/files/ja/web/api/element/focusin_event/index.md index 82f3fada9f..ac360d275f 100644 --- a/files/ja/web/api/element/focusin_event/index.md +++ b/files/ja/web/api/element/focusin_event/index.md @@ -5,105 +5,91 @@ tags: - API - DOM - Element - - Event + - イベント - FocusEvent - - Reference + - リファレンス - focusin - - イベント +browser-compat: api.Element.focusin_event translation_of: Web/API/Element/focusin_event --- -
{{APIRef}}
+{{APIRef}} -

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

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

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

+`focusin` の反対は {{domxref("Element/focusout_event", "focusout")}} です。 - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + +
バブリングあり
キャンセル可能いいえ
インターフェイス{{DOMxRef("FocusEvent")}}
イベントハンドラープロパティ{{domxref("GlobalEventHandlers/onfocusin", "onfocusin")}}
同期 / 非同期同期
Composedはい
バブリングあり
キャンセル不可
インターフェイス{{DOMxRef("FocusEvent")}}
イベントハンドラープロパティ + {{domxref("GlobalEventHandlers/onfocusin", "onfocusin")}} +
同期 / 非同期同期
Composedはい
-

+## 例 -

ライブデモ

+### ライブデモ -

HTML

+#### HTML -
<form id="form">
-  <input type="text" placeholder="text input">
-  <input type="password" placeholder="password">
-</form>
+```html +
+ + +
+``` -

JavaScript

+#### JavaScript -
const form = document.getElementById('form');
+```js
+const form = document.getElementById('form');
 
-form.addEventListener('focusin', (event) => {
+form.addEventListener('focusin', (event) => {
   event.target.style.background = 'pink';
 });
 
-form.addEventListener('focusout', (event) => {
+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")}}初回定義
+}); +``` + +#### 結果 + +{{EmbedLiveSample("Live_example", '100%', '50px')}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 -

ブラウザーの対応

+{{Compat}} -

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

+## 関連情報 -

関連情報

+- 関連イベント: {{domxref("Element/blur_event", "blur")}}, {{domxref("Element/focus_event", "focus")}}, {{domxref("Element/focusout_event", "focusout")}} +- [Focusing: focus/blur](https://javascript.info/focus-blur) - -- cgit v1.2.3-54-g00ecf