Gli ultimi tutorial di sviluppo web
 

HTML DOM ancoraggio di oggetto


ancoraggio di oggetto

L'oggetto Anchor rappresenta un HTML <a> elemento.

Accedere a un oggetto di ancoraggio

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

Esempio

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

Creare un oggetto di ancoraggio

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

Esempio

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

Proprietà oggetto di ancoraggio

= Proprietà aggiunta in HTML5.

Proprietà Descrizione
charset Non supportato in HTML5.
Imposta o restituisce il valore del charset attributo di un collegamento
download Imposta o restituisce il valore della download attributo di un collegamento
hash Imposta o restituisce la parte di ancoraggio del href valore di attributo
host Imposta o restituisce la parte host e la porta del href valore dell'attributo
hostname Imposta o restituisce la parte hostname del href valore di attributo
href Imposta o restituisce il valore del href attributo di un collegamento
hreflang Imposta o restituisce il valore del hreflang attributo di un collegamento
origin Restituisce la parte del protocollo, il nome host e la porta del href valore di attributo
name Non supportato in HTML5. Utilizzare element.id invece.
Imposta o restituisce il valore del name attributo di un collegamento
password Imposta o restituisce la parte della password del href valore di attributo
pathname Imposta o restituisce la parte percorso del href valore di attributo
port Imposta o restituisce la parte porta del href valore dell'attributo
protocol Imposta o restituisce la parte di protocollo del href valore di attributo
rel Imposta o restituisce il valore del rel attributo di un collegamento
rev Non supportato in HTML5.
Imposta o restituisce il valore del rev attributo di un collegamento
search Imposta o restituisce la parte della querystring href valore di attributo
target Imposta o restituisce il valore del target attributo di un collegamento
text Imposta o restituisce il contenuto del testo di un collegamento
type Imposta o restituisce il valore del type di attributo di un collegamento
username Imposta o restituisce la parte nome utente del href valore di attributo

Proprietà ed eventi standard

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


Pagine correlate

HTML tutorial: collegamenti HTML

Di riferimento HTML: HTML <a> tag