[JS] 關於window.location類別功能:轉址、取得網址參數
關於
這篇主要會整理 視窗轉址、取得網址屬性參數等等用法。
取得目前網頁資訊 location屬性
location.href 可以是用來取得目前網頁網址
以下以在MDN收尋location為例:
1 | // location.href: 用來取得目前網頁網址 |
URL() 建構式
裡面也有上述的屬性
1 | var url = new URL(location.href); |
另外可以用.searchParams()來取得網址參數
用 .entries() 方法搭配 for … of 則可把key跟value取出
1 | var url = new URL('https://github.com/search?q=javascript&type=code'); |
設定網頁location
location.href
除了可以查詢現在網頁地址,也可以用來設定目前的視窗要切換去的網址
1 | // 切到同一個網站,不同的路徑 |
location.assign(url)
也可設定目前的視窗要切換去的網址
1 | location.assign('https://www.google.com/'); |
location.replace(url)
也可設定目前的視窗要切換去的網址,與assign的差別是,replace會在history中被新的網頁取代,無法使用回到上一頁。
1 | location.replace('https://www.google.com/'); |
location.reload()
可設定是否要重新整理網頁
參數為布林值:true 用來強制瀏覽器從 server 取得最新的資料;false(預設),會優先從瀏覽器暫存檔 (cache) 中取得網頁資料。
1 | location.reload(true); |
1 | function refresh(){ |
其他重新整理頁面的用法
- history.go(0)
history.go(0):重新整理本頁
history.go(-1):回到上一頁 = history.back();
history.go(-2):回到上一頁的上一頁
history.go(1):到下一頁 = history.forward();
- window.location = location.href
- location.assign(location.href)
- location.replace(location.href)
- window.navigate(location.href)
- document.execCommand(‘Refresh’)
- document.URL=location.href
1 | <!-- 20秒後重新整理 --> |
開關視窗時刷新
1 | <body onload="opener.location.reload()"> <!--開視窗時刷新--> |
參考資料
[JS] 關於window.location類別功能:轉址、取得網址參數