window.location.href是一個用于獲取或者設置當前頁面的URL的屬性。
獲取當前頁面的URL:
var currentURL = window.location.href; console.log(currentURL);
在當前頁面跳轉到其他頁面:
window.location.href = "http://www.example.com";