Input Email Oggetto
L'oggetto di input e-mail è nuovo in HTML5.
L'oggetto di input-mail rappresenta un HTML <input> elemento con type = "email".
Nota: <input> elementi con type = "email" non sono supportati in Internet Explorer 9 (and earlier versions) , o Safari.
Accedere a un ingresso e-mail oggetto
È possibile accedere a un <input> elemento con type = "email" utilizzando getElementById() :
Suggerimento: È anche possibile accedere <input type="email"> effettuando una ricerca attraverso l'elementi collezione di un modulo.
Creare un Input e-mail oggetto
È possibile creare un <input> elemento con type = "email", utilizzando il document. createElement() document. createElement() Metodo:
Proprietà di posta elettronica oggetto di input
Proprietà | Descrizione |
---|---|
autocomplete | Imposta o restituisce il valore del autocomplete attributo di un campo email |
autofocus | Imposta o restituisce se un campo di posta elettronica dovrebbero ottenere automaticamente messa a fuoco quando la pagina viene caricata |
defaultValue | Imposta o restituisce il valore predefinito di un campo e-mail |
disabled | Imposta o restituisce se un campo di e-mail è disattivata, o no |
form | Restituisce un riferimento alla forma che contiene il campo email |
list | Restituisce un riferimento alla datalist che contiene il campo email |
maxLength | Imposta o restituisce il valore del maxlength attributo di un campo email |
multiple | Imposta o restituisce se un utente è permesso di entrare più di un indirizzo di posta elettronica nel campo e-mail |
name | Imposta o restituisce il valore del name attributo di un campo email |
pattern | Imposta o restituisce il valore del pattern attributo di un campo email |
placeholder | Imposta o restituisce il valore del placeholder attributo di un campo email |
readOnly | Imposta o restituisce se il campo e-mail è di sola lettura, o no |
required | Imposta o restituisce se il campo e-mail deve essere compilato prima di inviare un modulo |
size | Imposta o restituisce il valore della size attributo del campo email |
type | Restituisce il tipo di elemento di modulo del campo email è |
value | Imposta o restituisce il valore del value attributo di un campo email |
Proprietà ed eventi standard
L'oggetto di input-mail 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