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/htmlformcontrolscollection | |
| 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/htmlformcontrolscollection')
| -rw-r--r-- | files/ja/web/api/htmlformcontrolscollection/index.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/files/ja/web/api/htmlformcontrolscollection/index.html b/files/ja/web/api/htmlformcontrolscollection/index.html new file mode 100644 index 0000000000..94d71140aa --- /dev/null +++ b/files/ja/web/api/htmlformcontrolscollection/index.html @@ -0,0 +1,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> |
