blob: 94d71140aac14e56d60802975478c3e7d0b40539 (
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
|
---
title: HTMLFormControlsCollection
slug: Web/API/HTMLFormControlsCollection
tags:
- DOM
- DOM Reference
translation_of: Web/API/HTMLFormControlsCollection
---
<div>
{{ApiRef}}</div>
<p>HTMLFormControlsCollection は、HTML フォームコントロール要素のコレクションを表すインタフェースです。 {{domxref("HTMLCollection")}} から継承されるプロパティとメソッドの他に、追加メソッドがひとつ提供されます。</p>
<p>このインタフェースは {{domxref("HTMLFormElement")}} インタフェースの {{domxref("HTMLFormElement.elements","elements")}} プロパティ及び <code>HTMLFieldSetElement</code> インタフェースの <code>elements</code> プロパティで用いられます。</p>
<h2 id="Methods" name="Methods">メソッド</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">メソッド名 & 引数</th>
<th scope="col">戻り値</th>
<th scope="col">説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>namedItem</code> ({{domxref("DOMString")}} name 内)</td>
<td><code>object</code></td>
<td>指定した name と一致する <code>name</code> 属性または <code>id</code> 属性を持つコレクション内のノードまたはノードリストを取得。一致するノードが存在しない場合は <code>null</code> が取得される。</td>
</tr>
</tbody>
</table>
<h2 id="Specification" name="Specification">仕様書</h2>
<ul>
<li><a href="http://www.w3.org/TR/html5/common-dom-interfaces.html#htmlformcontrolscollection" title="http://www.w3.org/TR/html5/common-dom-interfaces.html#htmlformcontrolscollection">HTML 5, Section 2.7.2.3 HTMLFormControlsCollection</a></li>
</ul>
|