--- 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 ---
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.
nodeList = HTMLFormElement.elements
var input = document.getElementById("form1").elements; var inputByIndex = inputs[2]; //indice var inputByName = inputs["login"]; //id oppure name
Specifica W3C DOM 2 HTML Specifica elements