我只想获取网站URL。不是从链接获取的URL。在页面加载时,我需要能够获取网站的完整、当前URL,并将其设置为一个变量,以便根据需要进行处理。
当前回答
你有多种方法可以做到这一点。
1:
location.href;
2:
document.URL;
3:
document.documentURI;
其他回答
获取当前页面URL:
window.location.href
使用window.location.href获取完整的URL。使用window.location.pathname获取离开主机的URL。
使用:window.location.href。
如上所述,更新window.location时,document.URL不会更新。请参阅MDN。
您可以使用以下方法获取带有哈希标记的当前URL位置:
JavaScript:
// Using href
var URL = window.location.href;
// Using path
var URL = window.location.pathname;
jQuery:
$(location).attr('href');
location.origin+location.pathname+location.search+location.hash;
and
location.href
也一样。