aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-09 23:44:08 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-20 00:15:02 +0900
commit3ed3d6528819a57304ee23f70096c6b9730a8467 (patch)
treee927c9df46fdcc92079673dc67447b79e283ebfb
parente848f9c492b3ce8f3adf33eda4f548d5b89fd384 (diff)
downloadtranslated-content-3ed3d6528819a57304ee23f70096c6b9730a8467.tar.gz
translated-content-3ed3d6528819a57304ee23f70096c6b9730a8467.tar.bz2
translated-content-3ed3d6528819a57304ee23f70096c6b9730a8467.zip
2021/09/19 時点の英語版に同期
-rw-r--r--files/ja/web/api/element/focusin_event/index.md142
1 files changed, 64 insertions, 78 deletions
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
---
-<div>{{APIRef}}</div>
+{{APIRef}}
-<p><strong><code>focusin</code></strong> イベントは、要素がフォーカスを受け取ろうとしているときに発生します。このイベントと {{domxref("Element/focus_event", "focus")}} との主な違いは、 <code>focusin</code> がバブリングを行うのに対し <code>focus</code> は行わないことです。</p>
+**`focusin`** イベントは、要素がフォーカスを受け取ろうとしているときに発生します。このイベントと {{domxref("Element/focus_event", "focus")}} との主な違いは、 `focusin` がバブリングを行うのに対し `focus` は行わないことです。
-<p><code>focusin</code> の反対は {{domxref("Element/focusout_event", "focusout")}} です。</p>
+`focusin` の反対は {{domxref("Element/focusout_event", "focusout")}} です。
<table class="properties">
- <tbody>
- <tr>
- <th scope="row">バブリング</th>
- <td>あり</td>
- </tr>
- <tr>
- <th scope="row">キャンセル可能</th>
- <td>いいえ</td>
- </tr>
- <tr>
- <th scope="row">インターフェイス</th>
- <td>{{DOMxRef("FocusEvent")}}</td>
- </tr>
- <tr>
- <th scope="row">イベントハンドラープロパティ</th>
- <td>{{domxref("GlobalEventHandlers/onfocusin", "onfocusin")}}</td>
- </tr>
- <tr>
- <th scope="row">同期 / 非同期</th>
- <td>同期</td>
- </tr>
- <tr>
- <th scope="row">Composed</th>
- <td>はい</td>
- </tr>
- </tbody>
+ <tbody>
+ <tr>
+ <th scope="row">バブリング</th>
+ <td>あり</td>
+ </tr>
+ <tr>
+ <th scope="row">キャンセル</th>
+ <td>不可</td>
+ </tr>
+ <tr>
+ <th scope="row">インターフェイス</th>
+ <td>{{DOMxRef("FocusEvent")}}</td>
+ </tr>
+ <tr>
+ <th scope="row">イベントハンドラープロパティ</th>
+ <td>
+ {{domxref("GlobalEventHandlers/onfocusin", "onfocusin")}}
+ </td>
+ </tr>
+ <tr>
+ <th scope="row">同期 / 非同期</th>
+ <td>同期</td>
+ </tr>
+ <tr>
+ <th scope="row">Composed</th>
+ <td>はい</td>
+ </tr>
+ </tbody>
</table>
-<h2 id="Examples" name="Examples">例</h2>
+## 例
-<h3 id="Live_example" name="Live_example">ライブデモ</h3>
+### ライブデモ
-<h4 id="HTML">HTML</h4>
+#### HTML
-<pre class="brush: html">&lt;form id="form"&gt;
- &lt;input type="text" placeholder="text input"&gt;
- &lt;input type="password" placeholder="password"&gt;
-&lt;/form&gt;</pre>
+```html
+<form id="form">
+ <input type="text" placeholder="text input">
+ <input type="password" placeholder="password">
+</form>
+```
-<h4 id="JavaScript">JavaScript</h4>
+#### JavaScript
-<pre class="brush: js">const form = document.getElementById('form');
+```js
+const form = document.getElementById('form');
-form.addEventListener('focusin', (event) =&gt; {
+form.addEventListener('focusin', (event) => {
event.target.style.background = 'pink';
});
-form.addEventListener('focusout', (event) =&gt; {
+form.addEventListener('focusout', (event) => {
event.target.style.background = '';
-});</pre>
-
-<h4 id="Result" name="Result">結果</h4>
-
-<p>{{EmbedLiveSample("Live_example", '100%', '50px')}}</p>
-
-<h2 id="Specifications" name="Specifications">仕様書</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">仕様書</th>
- <th scope="col">状態</th>
- <th scope="col">備考</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName("UI Events", "#event-type-focusin")}}</td>
- <td>{{Spec2("UI Events")}}</td>
- <td>Added info that this event is composed.</td>
- </tr>
- <tr>
- <td>{{SpecName("DOM3 Events", "#event-type-focusin")}}</td>
- <td>{{Spec2("DOM3 Events")}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
+});
+```
+
+#### 結果
+
+{{EmbedLiveSample("Live_example", '100%', '50px')}}
+
+## 仕様書
+
+{{Specifications}}
+
+## ブラウザーの互換性
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
+{{Compat}}
-<p>{{Compat("api.Element.focusin_event")}}</p>
+## 関連情報
-<h2 id="See_also" name="See_also">関連情報</h2>
+- 関連イベント: {{domxref("Element/blur_event", "blur")}}, {{domxref("Element/focus_event", "focus")}}, {{domxref("Element/focusout_event", "focusout")}}
+- [Focusing: focus/blur](https://javascript.info/focus-blur)
-<ul>
- <li>関連イベント: {{domxref("Element/blur_event", "blur")}}, {{domxref("Element/focus_event", "focus")}}, {{domxref("Element/focusout_event", "focusout")}}</li>
-</ul>