js獲取當前URL 引數 埠 IP等伺服器資訊

2021-10-07 22:20:44 字數 836 閱讀 6762

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

console.log(window.location.pathname)
2,設定或獲取整個 url 為字串。

console.log(window.location.href);
3,設定或獲取與 url 關聯的埠號碼。

console.log(window.location.port)
4,設定或獲取 url 的協議部分。

console.log(window.location.protocol)
5,設定或獲取 href 屬性中在井號「#」後面的分段。

console.log(window.location.hash)
6,設定或獲取 location 或 url 的 hostname 和 port 號碼。

console.log(window.location.host)
7,設定或獲取 href 屬性中跟在問號後面的部分。

console.log(window.location.search)
8,獲取變數的值(擷取等號後面的部分)

var url = window.location.search;
9,用來得到當前網頁的網域名稱

var domain = document.domain;

function getrootpath()

js獲取當前URL 引數 埠 IP等資訊

以下列出均為常用 位址為 1 設定或獲取整個 url 為字串 window.location.href 2 設定或獲取 url 的協議部分 window.location.protocol 3 設定或獲取 url 的主機部分 window.location.host 4 設定或獲取與 url 關聯的...

js獲取當前URL 引數 埠 IP等資訊

因之前vue專案裡面使用到裡面的部分功能,因此對該部分內容做了歸納整理,可能不是很全 1 設定或獲取整個 url 為字串 window.location.href 2 設定或獲取 url 的協議部分 window.location.protocol 3 設定或獲取 url 的主機部分 window....

js獲取當前URL 引數 埠 IP等資訊

以下列出均為常用 位址為 1 設定或獲取整個 url 為字串 window.location.href 2 設定或獲取 url 的協議部分 window.location.protocol 3 設定或獲取 url 的主機部分 window.location.host 4 設定或獲取與 url 關聯的...