Gli ultimi tutorial di sviluppo web
 

Link href Proprietà

Collegamento Object Reference collegamento Object

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

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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:
  • An absolute URL - points to another web site (like href="http://www.example.com/default.htm")
  • A relative URL - points to a file within a web site (like href="default.htm")

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


Collegamento Object Reference collegamento Object