Input Oggetto Testo
L'oggetto Text Input rappresenta un HTML <input> elemento con type = "text".
Accedere a un oggetto di testo di input
È possibile accedere a un <input> elemento con type = "text" utilizzando getElementById() :
Suggerimento: È anche possibile accedere <input type="text"> effettuando una ricerca attraverso l'elementi collezione di un modulo.
Crea un oggetto di testo di input
È possibile creare un <input> elemento con type = "text" utilizzando il document. createElement() document. createElement() Metodo:
Proprietà testo oggetto di input
= Proprietà aggiunta in HTML5.
Proprietà | Descrizione |
---|---|
autocomplete | Imposta o restituisce il valore del autocomplete attributo di un campo di testo |
autofocus | Imposta o restituisce se un campo di testo dovrebbero ottenere automaticamente messa a fuoco quando la pagina viene caricata |
defaultValue | Imposta o restituisce il valore predefinito di un campo di testo |
disabled | Imposta o restituisce se il campo di testo è disattivato, o no |
form | Restituisce un riferimento alla forma che contiene il campo di testo |
list | Restituisce un riferimento alla datalist che contiene il campo di testo |
maxLength | Imposta o restituisce il valore del maxlength attributo di un campo di testo |
name | Imposta o restituisce il valore del name attributo di un campo di testo |
pattern | Imposta o restituisce il valore del pattern attributo di un campo di testo |
placeholder | Imposta o restituisce il valore del placeholder attributo di un campo di testo |
readOnly | Imposta o restituisce se un campo di testo è di sola lettura, o no |
required | Imposta o restituisce se il campo di testo deve essere compilato prima di inviare un modulo |
size | Imposta o restituisce il valore della size attributo di un campo di testo |
type | Restituisce il tipo di elemento di modulo è un campo di testo |
value | Imposta o restituisce il valore del value attributo del campo di testo |
Proprietà ed eventi standard
L'oggetto Text Input 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