aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlselectelement/item/index.html
blob: a716eecdb0957d4c59f47cd0b0045482cc03d383 (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
---
title: HTMLSelectElement.item()
slug: Web/API/HTMLSelectElement/item
tags:
- API
- HTML DOM
- HTMLSelectElement
- Method
- Reference
translation_of: Web/API/HTMLSelectElement/item
---
<div>{{ APIRef("HTML DOM") }}</div>

<p><code><strong>HTMLSelectElement.item()</strong></code> メソッドは、選択肢のリスト内で引数で渡された位置にある {{domxref("HTMLOptionElement")}} に対応する {{domxref("Element")}} を返します。存在しない場合は <code>null</code> を返します。</p>

<p>JavaScript では、ブラケット構文に <code>unsigned long</code> の値を入れた <code><em>selectElt</em>[<em>index</em>]</code> の形が、 <code><em>selectElt</em></code><code>.namedItem(<em>index</em>)</code> と同等です。</p>

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

<pre class="brush: js">var <em>item</em> = <em>collection</em>.item(<em>index</em>);
var <em>item </em>=<em> collection</em>[<em>index</em>];
</pre>

<h3 id="Parameters">引数</h3>

<ul>
  <li><code>index</code><code>unsigned long</code> の値です。</li>
</ul>

<h3 id="Return_value">返値</h3>

<ul>
  <li><code>item</code>{{domxref("HTMLOptionElement")}} です。</li>
</ul>

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

<h3 id="HTML">HTML</h3>

<pre class="brush:html">&lt;form&gt;
  &lt;select id="myFormControl"&gt;
    &lt;option id="o1"&gt;Opt 1&lt;/option&gt;
    &lt;option id="o2"&gt;Opt 2&lt;/option&gt;
  &lt;/select&gt;
&lt;/form&gt;
</pre>

<h3 id="JavaScript">JavaScript</h3>

<pre class="brush:css">// Returns the HTMLOptionElement representing #o2
elem1 = document.forms[0]['myFormControl'][1];
</pre>

<h2 id="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-select-item", "HTMLSelectElement.item()")}}</td>
      <td>{{Spec2('HTML WHATWG')}}</td>
      <td>最新のスナップショット、 {{SpecName('HTML5 W3C')}} から変更なし。</td>
    </tr>
    <tr>
      <td>{{SpecName('HTML5 W3C', "forms.html#dom-select-item",
        "HTMLSelectElement.item()")}}</td>
      <td>{{Spec2('HTML5 W3C')}}</td>
      <td>初回定義、 {{SpecName('HTML WHATWG')}} のスナップショット。</td>
    </tr>
  </tbody>
</table>

<h2 id="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.item")}}</p>

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

<ul>
  <li>実装先の {{domxref("HTMLSelectElement")}}</li>
</ul>