diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-09 23:48:56 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-20 00:15:02 +0900 |
commit | 8c78e0c9e7b9d1cf9063c803571e97832ab5f344 (patch) | |
tree | f312d90a7ad4c23b69f5d3d4aa5a29b92f677187 | |
parent | 3ed3d6528819a57304ee23f70096c6b9730a8467 (diff) | |
download | translated-content-8c78e0c9e7b9d1cf9063c803571e97832ab5f344.tar.gz translated-content-8c78e0c9e7b9d1cf9063c803571e97832ab5f344.tar.bz2 translated-content-8c78e0c9e7b9d1cf9063c803571e97832ab5f344.zip |
2021/09/19 時点の英語版に同期
-rw-r--r-- | files/ja/web/api/element/focusout_event/index.md | 141 |
1 files changed, 63 insertions, 78 deletions
diff --git a/files/ja/web/api/element/focusout_event/index.md b/files/ja/web/api/element/focusout_event/index.md index 0e0e661a6b..41d5f64af3 100644 --- a/files/ja/web/api/element/focusout_event/index.md +++ b/files/ja/web/api/element/focusout_event/index.md @@ -5,106 +5,91 @@ tags: - API - DOM - Element - - Event + - イベント - FocusEvent - - Reference + - リファレンス - focusout - onfocusout - - イベント +browser-compat: api.Element.focusout_event translation_of: Web/API/Element/focusout_event --- -<div>{{APIRef}}</div> +{{APIRef}} -<p><strong><code>focusout</code></strong> イベントは、要素がフォーカスを失おうとしているときに発生します。このイベントと {{domxref("Element/blur_event", "blur")}} との主な違いは、 <code>focusout</code> が<a href="/ja/docs/Learn/JavaScript/Building_blocks/Events#Event_bubbling_and_capture">バブリング</a>を行うのに対し <code>blur</code> は行わないことです。</p> +**`focusout`** イベントは、要素がフォーカスを失おうとしているときに発生します。このイベントと {{domxref("Element/blur_event", "blur")}} との主な違いは、 `focusout` が[バブリング](/ja/docs/Learn/JavaScript/Building_blocks/Events#Event_bubbling_and_capture)するのに対し `blur` はしないことです。 -<p><code>focusout</code> の反対は {{domxref("Element/focusin_event", "focusin")}} です。</p> +`focusout` の反対は {{domxref("Element/focusin_event", "focusin")}} です。 <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/onfocusout", "onfocusout")}}</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/onfocusout", "onfocusout")}} + </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"><form id="form"> - <input type="text" placeholder="text input"> - <input type="password" placeholder="password"> -</form></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) => { +form.addEventListener('focusin', (event) => { event.target.style.background = 'pink'; }); -form.addEventListener('focusout', (event) => { +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-focusout")}}</td> - <td>{{Spec2("UI Events")}}</td> - <td>Added info that this event is composed.</td> - </tr> - <tr> - <td>{{SpecName("DOM3 Events", "#event-type-focusout")}}</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> +## ブラウザーの互換性 -<p>{{Compat("api.Element.focusout_event")}}</p> +{{Compat}} -<h2 id="See_also" name="See_also">関連情報</h2> +## 関連情報 -<ul> - <li>関連イベント: {{domxref("Element/blur_event", "blur")}}, {{domxref("Element/focus_event", "focus")}}, {{domxref("Element/focusin_event", "focusin")}}</li> -</ul> +- 関連イベント: {{domxref("Element/blur_event", "blur")}}, {{domxref("Element/focus_event", "focus")}}, {{domxref("Element/focusin_event", "focusin")}} +- [Focusing: focus/blur](https://javascript.info/focus-blur) |