4.17

yblll發表於2024-06-18

window location跳轉的幾種方式與a連結跳轉的總結

1.window.location.href 在當前頁面跳轉

1
window.location.href = 'http://www.baidu.com' 等於 <a href="http://www.baidu.com"></a>

2.window.open 在新頁面跳轉

1
window.open('www.baidu.com') 等於 <a href="http://www.baidu.com" target="_blank"></a>

3.self.location.href =‘www.baidu.com’ 禁止頁面跳轉-可以用在你頁面要開啟外部外掛

1
self.location.href ='www.baidu.com' 等於 <a href="www.baidu.com" target="_self"></a>

4.window.location.assign() 也是在本頁面重新整理

5.window.location.reload(true);強制從伺服器重新載入當前頁面 

6.window.location.replace()重新載入頁面