加载中...

js获取url协议、url, 端口号等信息路由信息

以路径为 http://www.baidu.com  为例

console.log("location:"+window.location.href);
>> "https://www.baidu.com/"

console.log("location:"+window.location.hostname);
>> "www.baidu.com/"

console.log("location:"+window.location.protocol);
>> "https:"

console.log("location:"+window.location.host);
>> "www.baidu.com"

console.log("location:"+window.location.port);
>> ""  
#说明一下, 这里是指默认端口, http默认为80端口, https默认为443端口.如果有端口号, 这里会返回端口号的字符串

 

看一下   window.location 具体有哪些内容:

 

posted @ 2018-07-20 19:08  水车  阅读(1672)  评论(0编辑  收藏  举报