JS獲取當前頁面頁面URL資訊

2021-07-03 19:53:00 字數 1233 閱讀 9636

url即:統一資源定位符 (uniform resource locator, url)

完整的url由這幾個部分構成:

scheme://host:port/path?query#fragment

scheme:通訊協議

常用的http,ftp,maito等

設定或獲取url從頭到埠號部分。

url = 

window.location.origin;

---> ""

設定或獲取物件指定的檔名或路徑。

設定或獲取整個 url 為字串。

url =

window.location.href; 

--->  ""

設定或獲取與 url 關聯的埠號碼。

url =

window.location.port;

--->  "2000"

設定或獲取 url 的協議部分。

設定或獲取 href 屬性中在井號「#」後面的分段。

url =

window.location.hash; 

--->  "#pid207"

設定或獲取 location 或 url 的 hostname 和 port 號碼。

url =

window.location.host; 

--->  "192.168.14.97:2000"

設定或獲取 location 或 url 的 hostname。

url =

window.location.hostname;  

--->  "192.168.14.97"

設定或獲取 href 屬性中跟在問號後面的部分。

url =

window.location.search;  ---> 

"?wd=hei+jude&tn=monline_4_dg"

獲取變數的值(擷取等號後面的部分)

var url = window.location.search;

var loc = url.substring(url.lastindexof('=')+1, url.length);

js獲取當前頁面url資訊

設定或獲取物件指定的檔名或路徑。window.location.pathname 例 http localhost 8086 topic index?topicid 361 alert window.location.pathname 則輸出 topic index 設定或獲取整個 url 為字串。...

js獲取當前頁面的url資訊

設定或獲取物件指定的檔名或路徑。alert window.location.pathname 設定或獲取整個 url 為字串。alert window.location.href 設定或獲取與 url 關聯的埠號碼。alert window.location.port 設定或獲取 url 的協議部分...

獲取當前頁面的URL資訊

以前在做 的時候,經常會遇到當前頁的分類高亮顯示,以便讓使用者了解當前處於哪個頁面。之前一直是在每個不同頁面寫方法。工程量大,也不便於修改。一直在想有什麼簡便的方法實現。後來在網上查到可以用獲取當前url的詳細資訊來判斷。所以收集了jquery獲取url的函式的資料。設定或獲取物件指定的檔名或路徑。...