Numero di input Object
L'Oggetto numero di input è nuovo in HTML5.
L'oggetto Ingresso Numero rappresenta un HTML <input> elemento con type = "numero".
Nota: <input> elementi con type = "numero" non sono supportati in Internet Explorer 9 e versioni precedenti.
Accedere a un numero di oggetti in ingresso
È possibile accedere a un <input> elemento con type = "numero" utilizzando getElementById() :
Suggerimento: È anche possibile accedere <input type="number"> dalla ricerca attraverso l'elementi collezione di un modulo.
Creare un numero di oggetti in ingresso
È possibile creare un <input> elemento con type = "numero", utilizzando il document. createElement() document. createElement() Metodo:
Proprietà Numero oggetto di input
Proprietà | Descrizione |
---|---|
autocomplete | Imposta o restituisce il valore del autocomplete attributo di un campo numerico |
autofocus | Imposta o restituisce se un campo di numero dovrebbero ottenere automaticamente messa a fuoco quando la pagina viene caricata |
defaultValue | Imposta o restituisce il valore predefinito di un campo numerico |
disabled | Imposta o restituisce se un campo di numero è disabilitato, o no |
form | Restituisce un riferimento alla forma che contiene il campo di numero |
list | Restituisce un riferimento alla datalist che contiene il campo di numero |
max | Imposta o restituisce il valore del max attributo di un campo numerico |
min | Imposta o restituisce il valore del min attributo di un campo numerico |
name | Imposta o restituisce il valore del name attributo di un campo numerico |
placeholder | Imposta o restituisce il valore del placeholder attributo di un campo numerico |
readOnly | Imposta o restituisce se il campo del numero è di sola lettura, o no |
required | Imposta o restituisce se il campo numero deve essere compilato prima di inviare un modulo |
step | Imposta o restituisce il valore del step attributo di un campo numerico |
type | Rendimenti quale tipo di elemento di modulo del campo numerico è |
value | Imposta o restituisce il valore del value attributo di un campo numerico |
Metodi Numero oggetto di input
Metodo | Descrizione |
---|---|
stepDown() | Diminuisce il valore del numero di input di un numero specificato |
stepUp() | Incrementa il valore del numero di input di un numero specificato |
Proprietà ed eventi standard
L'oggetto Ingresso Numero supporta anche lo standard proprietà ed eventi .
Pagine correlate
HTML tutorial: moduli HTML
Di riferimento HTML: HTML <input> tag
Di riferimento HTML: HTML <input> type