1. 程式人生 > >獲取當前頁面的主機/埠號/路徑

獲取當前頁面的主機/埠號/路徑



1、設定或獲取整個 URL 為字串

window.location.href

2、設定或獲取 URL 的協議部分

window.location.protocol

3、設定或獲取 URL 的主機和埠

window.location.host

4、設定或獲取與 URL 關聯的埠號

window.location.port

5、設定或獲取與 URL 的檔案路徑(就是檔案地址)

window.location.pathname

6、設定或獲取 href 屬性中跟在問號後面的部分(搜尋內容)

window.location.search

7、設定或獲取 href 屬性中在井號“#”後面的分段

window.location.hash


開啟一個新頁面 window.open(url);

在當前頁面開啟新頁面:window.location.href = url;