如何用js獲得當前頁面的url信息方法

如何用js獲得當前頁面的url信息方法(JS獲取當前網址信息)

1,設置或獲取對象指定的文件名或路徑。html

alert(window.location.pathname)dom

2,設置或獲取整個 URL 爲字符串。url

alert(window.location.href);spa

3,設置或獲取與 URL 關聯的端口號碼。htm

alert(window.location.port)對象

4,設置或獲取 URL 的協議部分。blog

alert(window.location.protocol)字符串

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

alert(window.location.hash)string

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;

相關文章
相關標籤/搜索