href属性设置或返回当前页面的完整URL。
返回href属性:
location.href
设置href属性:
location.href = URL
var x = location.href; document.querySelector("#output").innerHTML = x;测试看看‹/›
所有浏览器都完全支持href属性:
属性 | |||||
href | 是 | 是 | 是 | 是 | 是 |
值 | 描述 |
---|---|
URL | 字符串,指定链接的URL。 可能的值:
|
返回值: | 一个字符串,表示页面的整个URL,包括协议(例如https://) |
---|
将href值设置为指向另一个网站:
location.href = "";测试看看‹/›
将href值设置为指向页面内的锚点:
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属性