Document (rozszerzenie)#

document.forms#

Właściwość forms zwraca kolekcję typu HTMLCollection, w której zawarte są wszystkie elementy form występujące w danym dokumencie. Właściwość jest tylko do odczytu.

Prosty przykład:

  1. L
  2. K
  3. T'
  4. T
  5. A
  6. O
  7. Z'
  8. Z
  9. #
<!DOCTYPE html>
<html>

<head>

	<script>

		window.onload = function(){ // Uruchom po całkowitym załadowaniu dokumentu

			var allForms = document.forms; // [object HTMLCollection] ze wszystkimi elementami form
			var allFormsLen = allForms.length;
			var targetDiv = document.getElementById("rezultat");

			targetDiv.innerHTML = "Kolekcja typu: " + allForms + "<br><br>"
				+ "Liczba wszystkich elementów form: "+ allFormsLen;

		}

	</script>

</head>

<body>
	<p>Formularze form w kodzie HTML</p>
	<form>
		<input type="button" value="Pierwszy formularz" onclick="alert(document.forms[0].elements[0].value)"></input>
	</form>
	<form>
		<input type="button" value="Drugi formularz" onclick="alert(document.forms[1].elements[0].value)"></input>
	</form>

	<div id="rezultat"></div>
</body>

</html>

Interfejs Web IDL#

  1. L
  2. K
  3. T'
  4. T
  5. A
  6. O
  7. Z'
  8. Z
  9. #
readonly attribute HTMLCollection forms;

Specyfikacje i inne materiały#

Pasek społecznościowy

SPIS TREŚCI AKTUALNEJ STRONY

Document (rozszerzenie) (H1) document.forms (H2) Interfejs Web IDL (H3) Specyfikacje i inne materiały (H3)