要使HTML獲得路徑铐姚,肯定是要用到JavaScript定拟,獲得方式有以下幾種方式
獲得方式都是 window.location. = this.location. 在后邊加入要獲得的方式骄瓣,這里我就以this.location.方式說一下
加入當(dāng)前頁面的全路徑是 http://127.0.0.1:8020/login/getUrl.html?__hbt=1523851552803
-
this.location.href
獲得全路徑 如 http://127.0.0.1:8020/login/getUrl.html?__hbt=1523851552803
-
this.location.search
獲得路徑中的參數(shù) 如 ?__hbt=1523851552803
-
this.location.protocol
獲得路徑的協(xié)議 如 http:
-
this.location.host
獲得主機(jī)及端口號 如 127.0.0.1:8020
-
this.location.hostname
獲得主機(jī)地址 如 127.0.0.1
-
this.location.port
獲得端口號 如 8020
-
this.location.pathname
獲得路徑部分 如 /login/getUrl.html
另外還有
url = window.location.hash; /* 獲取錨點(diǎn)(“#”后面的分段) /
alert(url); / #test?name=test */