window.location
物件可用於取得目前頁面位址(URL)並將瀏覽器重定向到新頁面。
window.location 物件可不帶 window 字首書寫。
window.location.href
#window.location.href
屬性傳回目前頁面的 URL。
在js中,window.location.href
常用於頁面跳躍。它主要有以下幾種用法:
1、在目前頁面開啟URL頁面。
要注意的是window.location.href=window.location.href
與window.location.reload()
都是刷新目前頁面。差別在於是否有提交資料。當有提交資料時,window.location.Reload()
會提示是否提交,window.location.href=window.location.href;
則是向指定的url提交數據
self.location.href="url" location.href="url" window.location.href="url" this.location.href="url"
2、在父頁面開啟URL頁面。
parent.location.href="url"
3、在頂層頁面開啟URL頁面。
top.location.href="url"
推薦教學:js教學
以上是window.location.href的用法是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!