JavaScript获取完整当前域名

经常用到,有时候会记混,先记录一下。测试地址:https://www.lihuyong.com/test.html?uid=33

window.location.protocol+"//"+window.location.host; //返回https://www.lihuyong.com
window.location.host; //返回url的主机部分带端口,默认80的话会隐藏:www.lihuyong.com  
window.location.hostname; //返回www.lihuyong.com
window.location.href; //返回整个url字符串:https://www.lihuyong.com/test.html?uid=33
window.location.pathname; //返回test.html 
window.location.protocol; //返回url的协议部分:https
window.location.port; //返回url的端口部分,如果采用默认的80端口,那么返回值并不是默认的80而是空字符

猜你喜欢

发表评论

最新发布