Gli ultimi tutorial di sviluppo web
 

HTML DOM Object Meter


Meter Object

L'Oggetto Meter è nuovo in HTML5.

L'oggetto Meter rappresenta un HTML <meter> elemento.

Nota: Il <meter> elemento non è supportato in Internet Explorer o Safari 5 e versioni precedenti.

Accedere a un oggetto Meter

È possibile accedere a un <meter> elemento utilizzando getElementById() :

Esempio

var x = document.getElementById("myMeter");
Prova tu stesso "

Creare un oggetto Meter

È possibile creare un <meter> elemento utilizzando il document. createElement() document. createElement() Metodo:

Esempio

var x = document.createElement("METER");
Prova tu stesso "

Proprietà oggetto Meter

Proprietà Descrizione
high Imposta o restituisce il valore high attributo in un manometro
labels Restituisce un elenco di <label> elementi che sono le etichette per l'indicatore
low Imposta o restituisce il valore low attributo in un calibro
max Imposta o restituisce il valore del max attributo in un manometro
min Imposta o restituisce il valore del min attributo in un manometro
optimum Imposta o restituisce il valore optimum attributo in un calibro
value Imposta o restituisce il valore del value attributo in un manometro

Proprietà ed eventi standard

L'oggetto Meter supporta anche lo standard proprietà ed eventi .


Pagine correlate

Di riferimento HTML: HTML <meter> tag