溫馨提示×

JavaScript中window.location.href怎么使用

小億
104
2023-08-03 10:14:19
欄目: 編程語言

window.location.href是一個用于獲取或者設(shè)置當前頁面的URL的屬性。

獲取當前頁面的URL:

var currentURL = window.location.href;
console.log(currentURL);

在當前頁面跳轉(zhuǎn)到其他頁面:

window.location.href = "http://www.example.com";

0