--- title: HTMLFormElement.elements slug: Web/API/HTMLFormElement/elements tags: - DOM - Gecko - Reference_del_DOM_di_Gecko - Tutte_le_categorie translation_of: Web/API/HTMLFormElement/elements ---
{{APIRef("HTML DOM")}}

Restituisce una HTMLCollection contenente tutti i controlli dell'elemento form a cui si riferisce.

Puoi accedere un elemento della collezione sia usando l'indice che usando l'id o il name.

Sintassi

nodeList =
HTMLFormElement.elements

Esempio

var input = document.getElementById("form1").elements;
var inputByIndex = inputs[2]; //indice
var inputByName = inputs["login"]; //id oppure name

Specifiche

Specifica W3C DOM 2 HTML Specifica elements