Gli ultimi tutorial di sviluppo web
 

Form length Property

<Form Object

Esempio

Restituisce il numero di elementi in un modulo:

var x = document.getElementById("myForm").length;

Il risultato di x sarà:

3
Prova tu stesso "

Definizione e l'utilizzo

La proprietà length restituisce il numero di elementi in un modulo.


Supporto browser

Proprietà
length

Sintassi

formObject .length

Dettagli tecnici

Valore di ritorno: Un numero che rappresenta il numero di elementi nella forma

Altri esempi

Esempio

Ritorna il valore di ogni elemento in un modulo:

var x = document.getElementById("myForm");
var txt = "";
var i;
for (i = 0; i < x.length; i++) {
    txt = txt + x.elements[i].value + "<br>";
}
document.getElementById("demo").innerHTML = txt;
Prova tu stesso "

<Form Object