js獲得頁面當前請求位址

2021-07-30 06:28:56 字數 754 閱讀 7404

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

alert(window.location.pathname)

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

alert(window.location.href);

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

alert(window.location.port)

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

alert(window.location.protocol)

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

alert(window.location.hash)

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

alert(window.location.host)

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

alert(window.location.search)

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

var url = window.location.search;

//    alert(url.length);

//    alert(url.lastindexof('='));

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

9,用來得到當前網頁的網域名稱

var domain = document.domain;

定位獲得當前位址

定位大概步奏 1.通過gps獲ip位址獲得當前移動裝置的經緯度。主要 public void registerlocationlistener private class mylocationlistener implements locationlistener else else 移除基於loc...

js獲得頁面滑鼠位置

1.客戶區座標位置 clientx,clienty 滑鼠 2.頁面座標位置 pagex,pagey 滑鼠相對於頁面左上角的位置 受滑動等影響,例如pagey clienty scrolltop 3.螢幕座標位置 screenx,screeny 滑鼠相對於電腦左上角的位置 無視瀏覽器位置 4.偏移座標...

如何使用JS來獲取當前頁面位址資訊

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