在JavaScript中,window.location.href
用于獲取或設置當前頁面的URL地址。
用法:
var url = window.location.href;
console.log(url);
這將輸出當前頁面的URL地址。
window.location.href = "https://www.example.com";
這將將當前頁面導航到指定的URL地址。
可以將window.location.href
與其他URL相關的屬性一起使用,如window.location.protocol
、window.location.hostname
、window.location.pathname
、window.location.search
和window.location.hash
,以獲取或操作URL的各個部分。
注意:直接使用window.location.href
會導致瀏覽器立即跳轉到新的URL,如果只希望獲取URL而不導航到新頁面,可以使用window.location
對象的其他屬性。