Esempio
Restituisce l'URL del documento collegato:
var x = document.getElementById("myLink").href;
Il risultato di x sarà:
http://www.w3ii.com/jsref/styles.css
Prova tu stesso " Definizione e utilizzo
La proprietà href imposta o restituisce l'URL di un documento collegato.
Supporto per il browser
La proprietà href è supportata in tutti i principali browser.
Sintassi
Restituisce la proprietà href:
linkObject .href
Impostare la proprietà href:
linkObject .href=URL
I valori delle proprietà
Value | Description |
---|---|
URL |
Specifies the URL of the linked resource/document Possible values:
|
Dettagli tecnici
Valore di ritorno: | Una stringa, che rappresenta l'URL del documento collegato. Restituisce l'intero URL, compreso il protocollo (come http: //) |
---|
Altri esempi
Esempio
Modifica foglio di stile:
document.getElementById("myLink").href = "style2.css";
Prova tu stesso " Pagine correlate
Di riferimento HTML: HTML <link> href
