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> |