aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlelement/focus/index.html
blob: 42129a146561384333181d0c5e0ba3d084aa90eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
---
title: HTMLElement.focus()
slug: Web/API/HTMLElement/focus
tags:
  - API
  - Focus
  - HTML DOM
  - HTMLElement
  - Method
  - Reference
  - Scroll
  - View
  - activate
translation_of: Web/API/HTMLElement/focus
original_slug: Web/API/HTMLElement/focus
---
<div>{{ APIRef("HTML DOM") }}</div>

<p><span class="seoSummary"><strong><code>HTMLElement.focus()</code></strong> メソッドは、指定された要素にフォーカスを設定できる場合、フォーカスを設定します。 フォーカスされた要素は、デフォルトでキーボードや同様のイベントを受け取る要素です。</span></p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox"><em>element</em>.focus(<em>options</em>); // Object parameter</pre>

<h3 id="Parameters" name="Parameters">パラメーター</h3>

<dl>
 <dt><code>options</code> {{optional_inline}}</dt>
 <dd>フォーカスプロセスの側面を制御するオプションを提供するオプションのオブジェクト。 このオブジェクトには、次のプロパティが含まれる場合があります。</dd>
 <dd>
 <dl>
  <dt><code>preventScroll</code> {{optional_inline}}</dt>
  <dd>ブラウザーがドキュメントをスクロールして、新しくフォーカスされた要素を表示するかどうかを示す <code>Boolean</code> の値。 <code>preventScroll</code> の値が <code>false</code>(デフォルト)の場合、ブラウザーは要素をフォーカスした後、その要素をスクロールして表示します。 <code>preventScroll</code><code>true</code> に設定されている場合、スクロールしません。</dd>
 </dl>
 </dd>
</dl>

<h2 id="Examples" name="Examples"></h2>

<h3 id="Focus_on_a_text_field" name="Focus_on_a_text_field">テキストフィールドにフォーカスする</h3>

<h4 id="JavaScript" name="JavaScript">JavaScript</h4>

<pre class="brush: js">focusMethod = function getFocus() {
  document.getElementById("myTextField").focus();
}</pre>

<h4 id="HTML" name="HTML">HTML</h4>

<pre class="brush: html">&lt;input type="text" id="myTextField" value="テキストフィールド"&gt;
&lt;p&gt;&lt;/p&gt;
&lt;button type="button" onclick="focusMethod()"&gt;クリックしてテキストフィールドにフォーカスしてください!&lt;/button&gt;
</pre>

<h4 id="Result" name="Result">結果</h4>

<p>{{ EmbedLiveSample('Focus_on_a_text_field') }}</p>

<h3 id="Focus_on_a_button" name="Focus_on_a_button">ボタンにフォーカスする</h3>

<h4 id="JavaScript_2" name="JavaScript_2">JavaScript</h4>

<pre class="brush: js">focusMethod = function getFocus() {
  document.getElementById("myButton").focus();
}
</pre>

<h4 id="HTML_2" name="HTML_2">HTML</h4>

<pre class="brush: html">&lt;button type="button" id="myButton"&gt;クリックしてください!&lt;/button&gt;
&lt;p&gt;&lt;/p&gt;
&lt;button type="button" onclick="focusMethod()"&gt;クリックしてボタンにフォーカスしてください!&lt;/button&gt;
</pre>

<h4 id="Result_2" name="Result_2">結果</h4>

<p>{{ EmbedLiveSample('Focus_on_a_button') }}</p>

<h3 id="Focus_prevent_scroll" name="Focus_prevent_scroll">focusOption でフォーカスする</h3>

<h4 id="JavaScript_3" name="JavaScript_3">JavaScript</h4>

<pre class="brush: js">focusScrollMethod = function getFocus() {
  document.getElementById("myButton").focus({preventScroll:false});
}
focusNoScrollMethod = function getFocusWithoutScrolling() {
  document.getElementById("myButton").focus({preventScroll:true});
}

</pre>

<h4 id="HTML_3" name="HTML_3">HTML</h4>

<pre class="brush: html">&lt;button type="button" onclick="focusScrollMethod()"&gt;クリックしてボタンにフォーカスしてください!&lt;/button&gt;
&lt;button type="button" onclick="focusNoScrollMethod()"&gt;クリックしてスクロールせずにボタンにフォーカスしてください!&lt;/button&gt;

&lt;div id="container" style="height: 1000px; width: 1000px;"&gt;
&lt;button type="button" id="myButton" style="margin-top: 500px;"&gt;クリックしてください!&lt;/button&gt;
&lt;/div&gt;

</pre>

<h4 id="Result_3" name="Result_3">結果</h4>

<p>{{ EmbedLiveSample('Focus_prevent_scroll') }}</p>

<h2 id="Specification" name="Specification">仕様</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('HTML WHATWG', 'editing.html#dom-focus', 'focus')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5.1', 'editing.html#focus()-0', 'focus')}}</td>
   <td>{{Spec2('HTML5.1')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', 'editing.html#dom-focus', 'focus')}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('DOM2 HTML', 'html.html#ID-32130014', 'focus')}}</td>
   <td>{{Spec2('DOM2 HTML')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('DOM1', 'level-one-html.html#method-focus', 'focus')}}</td>
   <td>{{Spec2('DOM1')}}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="Notes" name="Notes">ノート</h2>

<p><code>mousedown</code> イベントハンドラから <code>HTMLElement.focus()</code> を呼び出す場合は、<code>event.preventDefault()</code> を呼び出して、フォーカスがその <code>HTMLElement</code> から離れないようにする必要があります。</p>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>



<p>{{Compat("api.HTMLElement.focus")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>要素からフォーカスを取り除く DOM メソッド {{domxref("HTMLElement.blur()")}}</li>
 <li>現在フォーカスされている要素がどれであるかを知るための {{ domxref("document.activeElement") }}</li>
</ul>