blob: dcba1e18e00d5fffd2cf1dc0722914b49ff62c7e (
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
|
---
title: document.forms
slug: Web/API/Document/forms
tags:
- DOM
- Dokumentacja_Gecko_DOM
- Gecko
- Wszystkie_kategorie
translation_of: Web/API/Document/forms
---
<p>{{ ApiRef() }}</p>
<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3>
<p><b>forms</b> zwraca listę elementów FORM z bieżącego dokumentu.</p>
<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3>
<pre class="eval"><i>listaWęzłów</i> = document.forms
</pre>
<h3 id="Przyk.C5.82ad" name="Przyk.C5.82ad">Przykład</h3>
<pre><html>
<head>
<title> document.forms example</title>
</head>
<body>
<form id="robby">
<input type="button" onclick="alert(document.forms[0].id);"
value="robby's form" />
</form>
<form id="dave">
<input type="button" onclick="alert(document.forms[1].id);"
value="dave's form" />
</form>
<form id="paul">
<input type="button" onclick="alert(document.forms[2].id);"
value="paul's form" />
</form>
</body>
</html>
</pre>
<h3 id="Specyfikacja" name="Specyfikacja">Specyfikacja</h3>
<p><a class="external" href="http://www.w3.org/TR/2000/WD-DOM-Level-2-HTML-20001113/html.html#ID-1689064">forms </a></p>
<p>{{ languages( { "en": "en/DOM/document.forms", "ja": "ja/DOM/document.forms" } ) }}</p>
|