aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/api/htmlformelement/elements/index.html
blob: e5be5603acf86bb3af137c41fcc922033cf70b50 (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
---
title: HTMLFormElement.elements
slug: Web/API/HTMLFormElement/elements
translation_of: Web/API/HTMLFormElement/elements
---
<div>
<div>APIRef("HTML DOM")</div>
</div>

<p>Die <code><strong>HTMLFormElement.elements</strong></code> Eigenschaft gibt eine domxref("HTMLFormControlsCollection") ( HTMLVersionInline(4) <code><a class="external" href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-75708506">HTMLCollection</a></code>) aller im FORM element enthaltenen Formularsteuerelemente zurück, mit Ausnahme von <a href="/en-US/docs/HTML/Element/Input" title="input"><code>input</code></a> , die ein <code>type</code> attribute haben von <code>image</code>.</p>

<p><span id="result_box" lang="de"><span>Sie können auf ein bestimmtes Element zugreifen, indem Sie entweder einen Index oder den Elementnamen oder die ID verwenden.</span></span></p>

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

<pre class="syntaxbox notranslate"><em>nodeList</em> = <em>HTMLFormElement</em>.elements
</pre>

<h2 id="Example" name="Example">Beschreibung</h2>

<pre class="brush:js notranslate">let inputs = document.getElementById("form1").elements;
let inputByIndex = inputs[2];
let inputByName = inputs["login"];
</pre>

<h2 id="Specifications" name="Specifications">Spezifikationen</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>SpecName('HTML WHATWG', '#dom-form-elements', 'HTMLFormElement.elements')</td>
   <td> Spec2('HTML WHATWG')</td>
   <td></td>
  </tr>
  <tr>
   <td>SpecName("DOM2 HTML", "html.html#ID-76728479", "HTMLFormElement.elements")</td>
   <td>Spec2("DOM2 HTML")</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>