Gli ultimi tutorial di sviluppo web
 

HTML DOM Object URL Input


Oggetto URL Input

L'Oggetto URL ingresso è nuovo in HTML5.

L'oggetto URL ingresso rappresenta un HTML <input> elemento con type = "url".

Nota: <input> elementi con type = "url" non sono supportati in Internet Explorer 9 (and earlier versions) , o Safari.

Accedere a un oggetto URL Input

È possibile accedere a un <input> elemento con type = "url" utilizzando getElementById() :

Esempio

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

Suggerimento: È anche possibile accedere <input type="url"> effettuando una ricerca attraverso l'elementi collezione di un modulo.

Creare un oggetto URL Input

È possibile creare un <input> elemento con type = "url" utilizzando il document. createElement() document. createElement() Metodo:

Esempio

var x = document.createElement("INPUT");
x.setAttribute("type", "url");
Prova tu stesso "

Proprietà URL oggetto di input

Proprietà Descrizione
autocomplete Imposta o restituisce il valore del autocomplete attributo di un campo URL
autofocus Imposta o restituisce se un campo URL dovrebbero ottenere automaticamente messa a fuoco quando la pagina viene caricata
defaultValue Imposta o restituisce il valore predefinito di un campo URL
disabled Imposta o restituisce se un campo URL è disabilitato, o no
form Restituisce un riferimento alla forma che contiene il campo URL
list Restituisce un riferimento alla datalist che contiene il campo URL
maxLength Imposta o restituisce il valore del maxlength attributo di un campo URL
name Imposta o restituisce il valore del name attributo di un campo URL
pattern Imposta o restituisce il valore del pattern attributo di un campo URL
placeholder Imposta o restituisce il valore del placeholder attributo di un campo URL
readOnly Imposta o restituisce se il campo URL è di sola lettura, o no
required Imposta o restituisce se il campo URL deve essere compilato prima di inviare un modulo
size Imposta o restituisce il valore della size attributo del campo URL
type Restituisce il tipo di elemento di modulo campo URL è
value Imposta o restituisce il valore del value attributo di un campo URL

Proprietà ed eventi standard

L'oggetto URL ingresso 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