目录
1、获取整个URL地址
- 1、获取整个URL地址
- 2、获取url协议
- 3、获取url主机
- 4、获取url端口
- 5、获取url路径,文件地址
- 6、获取url问号后面的部分
- 7、获取url井号后面的分段
console.log(window.location.href); // https://fanyi.baidu.com/translate?aldtype=16047&query=&keyfrom=baidu&smartresult=dict&lang=auto2zh#zh/en/%E5%B7%B2%E7%9F%A52、获取url协议
console.log(window.location.protocol); // https:3、获取url主机
console.log(window.location.host); // fanyi.baidu.com4、获取url端口
console.log(window.location.port); // 返回空字符,如果采用默认的80端口, // 即使添加了80端口,那么返回值并不是默认的80而是空字符5、获取url路径,文件地址
console.log(window.location.pathname); // /translate6、获取url问号后面的部分
console.log(window.location.search); // ?aldtype=16047&query=&keyfrom=baidu&smartresult=dict&lang=auto2zh7、获取url井号后面的分段
console.log(window.location.hash); // #zh/en/%E5%B7%B2%E7%9F%A5