href屬性設(shè)置或返回當前頁面的完整URL。
返回href屬性:
location.href
設(shè)置href屬性:
location.href = URL
var x = location.href; document.querySelector("#output").innerHTML = x;測試看看?/?
所有瀏覽器都完全支持href屬性:
屬性 | ![]() | ![]() | ![]() | ![]() | ![]() |
href | 是 | 是 | 是 | 是 | 是 |
值 | 描述 |
---|---|
URL | 字符串,指定鏈接的URL。 可能的值:
|
返回值: | 一個字符串,表示頁面的整個URL,包括協(xié)議(例如https://) |
---|
將href值設(shè)置為指向另一個網(wǎng)站:
location.href = "";測試看看?/?
將href值設(shè)置為指向頁面內(nèi)的錨點:
location.href = "#top";測試看看?/?
此示例顯示所有位置屬性:
var txt = ""; txt += "<p>Host: " + location.host + "</p>"; txt += "<p>Hostname: " + location.hostname + "</p>"; txt += "<p>Href: " + location.href + "</p>"; txt += "<p>Origin: " + location.origin + "</p>"; txt += "<p>Pathname: " + location.pathname + "</p>"; txt += "<p>Protocol: " + location.protocol + "</p>"; txt += "<p>Search: " + location.search + "</p>"; document.write(txt);測試看看?/?
位置參考:location.host屬性
位置參考:location.hostname屬性
位置參考:location.pathname屬性
位置參考:location.protocol屬性