blob: b74bec952a309c61b7766a8b498497344fcb87b5 (
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
|
---
title: HTMLSelectElement.autofocus
slug: Web/API/HTMLSelectElement/autofocus
tags:
- API
- HTML forms
- HTMLSelectElement
- Property
- Reference
translation_of: Web/API/HTMLSelectElement/autofocus
---
<p>{{ APIRef("HTML DOM") }}</p>
<p><code><strong>HTMLSelectElement.autofocus</strong></code> プロパティは {{htmlattrxref("autofocus", "select")}} HTML属性を反映した {{jsxref("Boolean")}} です。これはユーザーが上書きしない限り、ページが読み込まれた際に関連付けられた {{HTMLElement("select")}} 要素がページ読み込み時に入力フォーカスを得るかどうかを示します。</p>
<p>ドキュメント内のフォームに関連した、一つの要素だけがこの属性を指定できます。もし複数あった場合、属性がセットされた最初の要素 (通常はページの最初の要素) が初期のフォーカスを得ます。</p>
<div class="note">
<p>このプロパティを設定しても、関連付けられてた {{HTMLElement("select")}} 要素へフォーカスはセットされません: 単純にドキュメントへ <em>要素が挿入された</em> ときにブラウザへフォーカスするように指示するだけです。挿入後の設定、ドキュメントが読み込まれた後のほとんどの時間では、目に見える効果はありません。</p>
</div>
<h2 id="Syntax" name="Syntax">文法<a class="button section-edit only-icon" href="/ja/docs/Web/API/HTMLSelectElement/type$edit#Syntax"><span>Edit</span></a></h2>
<pre class="syntaxbox" id="comment_text_10">aBool = aSelectElement.autofocus; // Get the value of autofocus
aSelectElement.autofocus = aBool; // Set the value of autofocus
</pre>
<h2 id="Example" name="Example">例</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush:html"><select id="mySelect" autofocus>
<option>Option 1</option>
<option>Option 2</option>
</select>
</pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush:js">// Check if the autofocus attribute on the <select>
var hasAutofocus = document.getElementById('mySelect').autofocus;
</pre>
<h2 id="Specifications" name="Specifications">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様</th>
<th scope="col">ステータス</th>
<th scope="col">コメント</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-fe-autofocus', 'autofocus')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', '#dom-htmlinputelement-autofocus', 'autofocus')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("api.HTMLSelectElement.autofocus")}}</p>
|