地址栏的url:http://localhost:80867/topic/index?id=3615
1、window.location.pathname:获取对象指定的文件名或路径;
输出:/topic/index
2、window.location.href:获取整个 URL 为字符串;
输出:http://localhost:8086/topic/index?id=3615
3、window.location.port:获取端口
输出:80867
4、window.location.protocol:获取协议
输出:http:
5、window.location.hash:获取 href 属性中在井号“#”后面的分段
6、window.location.host:获取URL 的 hostname 和 port 号码
输出:http:localhost:80867
7、window.location.search:获取 href 属性中跟在问号后面的部分
输出:?id=3615
10-17 16:27