Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

document.forms

Podsumowanie

forms zwraca listę elementów FORM z bieżącego dokumentu.

Składnia

listaWęzłów = document.forms 

Przykład

<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>

Specyfikacja

forms

Autorzy i etykiety dokumentu

 Autorzy tej strony: teoli, basemnassar11, Mgjbot, Ptak82, Jan Dudek
 Ostatnia aktualizacja: basemnassar11,