js獲取當前頁面的url資訊

2021-07-02 12:27:20 字數 718 閱讀 2923

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

alert(window.location.pathname)

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

alert(window.location.href);

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

alert(window.location.port)

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

alert(window.location.protocol)

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

alert(window.location.hash)

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

alert(window.location.host)

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

alert(window.location.search)

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

var url = window.location.search;
// alert(url.length);

// alert(url.lastindexof(『=』));

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

原文

獲取當前頁面的URL資訊

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

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

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

js獲取當前頁面的url

設定或獲取物件指定的檔名或路徑。設定或獲取整個 url 為字串。設定或獲取與 url 關聯的埠號碼。設定或獲取 url 的協議部分。設定或獲取 href 屬性中在井號 後面的分段。設定或獲取 location 或 url 的 hostname 和 port 號碼。設定或獲取 href 屬性中跟在問號...