aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/api/document/forms/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/web/api/document/forms/index.html')
-rw-r--r--files/pl/web/api/document/forms/index.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/files/pl/web/api/document/forms/index.html b/files/pl/web/api/document/forms/index.html
new file mode 100644
index 0000000000..dcba1e18e0
--- /dev/null
+++ b/files/pl/web/api/document/forms/index.html
@@ -0,0 +1,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>&lt;html&gt;
+
+&lt;head&gt;
+&lt;title&gt; document.forms example&lt;/title&gt;
+&lt;/head&gt;
+
+&lt;body&gt;
+&lt;form id="robby"&gt;
+ &lt;input type="button" onclick="alert(document.forms[0].id);"
+ value="robby's form" /&gt;
+&lt;/form&gt;
+
+&lt;form id="dave"&gt;
+ &lt;input type="button" onclick="alert(document.forms[1].id);"
+ value="dave's form" /&gt;
+&lt;/form&gt;
+
+&lt;form id="paul"&gt;
+ &lt;input type="button" onclick="alert(document.forms[2].id);"
+ value="paul's form" /&gt;
+&lt;/form&gt;
+
+&lt;/body&gt;
+&lt;/html&gt;
+</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>