1.设置或获取对象指定的文件名或路径:
获取整个 URL 为字符串(常用):window.location.href
2.获取与 URL 关联的端口号码:window.location.port
eg:http://localhost:8088/ =>8088
3.设置或获取 URL 的协议部分:window.location.protocol
eg:http://localhost:8088/ =>http
4.设置或获取 href 属性中在井号“#”后面的分段。window.location.hash
=> #home?tenancyId=4bfaaa6d-410e-11ec-875a-00505685097e
5.设置或获取 location 或 URL 的 hostname 和 port 号码:window.location.host
=> localhost:8088
来源地址:https://blog.csdn.net/qq_51819142/article/details/129183553