標籤:win 擷取 html indexof 常見 javascrip 方法 htm ash
先以“http://www.cnblogs.com/wuxibolgs329/p/6188619.html#flag?test=12345”為例,然後獲得它的各個組成部分。
1、擷取頁面完整的url
var a=location.href;console.log(a); // “http://www.cnblogs.com/wuxibolgs329/p/5261577.html#flag?test=12345”
2、擷取頁面的網域名稱
var host = window.location.host; //www.cnblogs.com
var host2 = document.domain; //www.cnblogs.com
var a = location.hostname; //www.cnblogs.com
3、擷取url協議
var a=location.protocol;console.log(a); //http:
4、擷取連接埠
var a=location.port;console.log(a);
5、擷取頁面路徑
var a=location.pathname;console.log(a);
6、設定或擷取 URL 的協議部分
var a = location.protocol;
7、擷取#後的部分
var a=window.location.hash; var b=a.substr(1); console.log(b); // flag?test=12345
8、擷取 href 屬性中跟在問號?後面的部分
// 此時案例地址變為“http://www.cnblogs.com/wuxibolgs329/p/5261577.html?test=12345”。得到 test=12345
var a=location.search;
var b=a.substr(1);
console.log(b);
//如果案例依舊是“http://www.cnblogs.com/wuxibolgs329/p/5261577.html#flag?test=12345”,則需下面的寫法,得到 test=12345
var a=location.href;
var b=a.substr(a.lastIndexOf(‘?‘)+1);
console.log(b);
9、擷取 = 號後面的部分
var a=location.href;var b=a.substring(a.lastIndexOf(‘=‘)+1);console.log(b); // 12345
javascript擷取url資訊的常見方法