diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/globaleventhandlers/onfocus | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/globaleventhandlers/onfocus')
-rw-r--r-- | files/ja/web/api/globaleventhandlers/onfocus/index.html | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/files/ja/web/api/globaleventhandlers/onfocus/index.html b/files/ja/web/api/globaleventhandlers/onfocus/index.html new file mode 100644 index 0000000000..a602033ddf --- /dev/null +++ b/files/ja/web/api/globaleventhandlers/onfocus/index.html @@ -0,0 +1,94 @@ +--- +title: GlobalEventHandlers.onfocus +slug: Web/API/GlobalEventHandlers/onfocus +tags: + - API + - Event Handler + - GlobalEventHandlers + - HTML DOM + - Property + - Reference +translation_of: Web/API/GlobalEventHandlers/onfocus +--- +<div>{{ApiRef("HTML DOM")}}</div> + +<p>{{domxref("GlobalEventHandlers")}} ミックスインの <code><strong>onfocus</strong></code> プロパティは、与えられた要素上の <code><a href="/ja/docs/Web/API/Element/focus_event">focus</a></code> イベントを処理する {{domxref("EventHandler")}} です。</p> + +<p><code>focus</code> イベントは、ユーザーがある要素にフォーカスを設定した時に生じます。</p> + +<p>非 input 要素上で <code>onfocus</code> を発生させるには、{{htmlattrxref("tabindex")}} 属性が与えられていなければなりません (詳細は <a href="/ja/docs/Learn/Accessibility/HTML#Building_keyboard_accessibility_back_in">Building keyboard accessibility back in</a> を参照)。</p> + +<div class="blockIndicator note"> +<p><strong>補足:</strong> <code>onfocus</code> の反対が {{domxref("GlobalEventHandlers.onblur", "onblur")}} です。</p> +</div> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox"><em>target</em>.onfocus = <em>functionRef</em>; +</pre> + +<h3 id="Value" name="Value">値</h3> + +<p><code>functionRef</code> は関数名または <a href="/ja/docs/Web/JavaScript/Reference/Operators/function">関数式</a> です。この関数は、{{domxref("FocusEvent")}} オブジェクトとその 1 個の引数を受け取ります。</p> + +<h2 id="Example" name="Example">例</h2> + +<p>この例は、{{domxref("GlobalEventHandlers.onblur", "onblur")}} および <code>onfocus</code> を使用して {{HtmlElement("input")}} 要素内のテキストを変更します。</p> + +<h3 id="HTML">HTML</h3> + +<pre class="brush: html"><input type="text" value="ここをクリック"> +</pre> + +<h3 id="JavaScript">JavaScript</h3> + +<pre class="brush: js">let input = document.querySelector('input'); + +input.onblur = inputBlur; +input.onfocus = inputFocus; + +function inputBlur() { + input.value = 'Focus has been lost'; +} + +function inputFocus() { + input.value = 'Focus is here'; +}</pre> + +<h3 id="Result_2" name="Result_2">実行結果</h3> + +<p>フォームフィールドの内側と外側をクリックしてみてください。それに応じてコンテンツが変化するか観察してください。</p> + +<p id="Result">{{EmbedLiveSample('Example')}}</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> + <tr> + <td>{{SpecName('HTML WHATWG','webappapis.html#handler-onfocus','onfocus')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td> </td> + </tr> + +</thead></table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2> + + + +<p>{{Compat("api.GlobalEventHandlers.onfocus")}}</p> + +<p>IE とは対称的に、<code>focus</code> イベントを受け取るほとんどすべての要素では、Gecko ブラウザー上のほとんどすべての要素において、このイベントが動作しません。</p> + +<h2 id="See_also" name="See_also">関連項目</h2> + +<ul> + <li>{{event("focus")}} イベント</li> + <li>関連するイベントハンドラー: {{domxref("GlobalEventHandlers.onblur")}}</li> +</ul> |