1,設定或獲取物件指定的檔名或路徑: window.location.pathname
2,設定或獲取整個 url 為字串: window.location.href
3,設定或獲取與 url 關聯的埠號碼: window.location.port
4,設定或獲取 url 的協議部分: window.location.protocol
5,設定或獲取 href 屬性中在井號「#」後面的分段: window.location.hash
6,設定或獲取 location 或 url 的 hostname 和 port 號碼: window.location.host
7,設定或獲取 href 屬性中跟在問號後面的部分: 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;
url裡的引數
function getquerystring(name)
// 呼叫方法
alert(getquerystring("引數名1"));
JS獲取當前頁面的URL等資訊
設定或獲取物件指定的檔名或路徑。alert window.location.pathname 設定或獲取整個 url 為字串。alert window.location.href 設定或獲取與 url 關聯的埠號碼。alert window.location.port 設定或獲取 url 的協議部分...
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....