window.location 方法及作用
2021-05-28 07:00
标签:hash protocol host cat oca source 协议 上下 arc window.location 方法及作用 标签:hash protocol host cat oca source 协议 上下 arc 原文地址:https://www.cnblogs.com/bu1204/p/14763378.html字段:http://localhost:9094/#/source/source-catalog
1、设置或获取整个 URL 为字符串window.location.href
http://localhost:9094/#/source/source-catalog2、设置或获取 URL 的协议部分
window.location.protocol
http:3、设置或获取 URL 的主机部分
window.location.host
localhost:90944、设置或获取与 URL 关联的端口号码
window.location.port
90945、设置或获取与 URL 的路径部分(就是文件地址)
window.location.pathname
直接设置,端口后会直接加上下载路径
/rcservcie/doc?5c3a975b-3773-467c-a52a-5a490f38cf44
http://localhost:9094/rcservcie/doc%3F5c3a975b-3773-467c-a52a-5a490f38cf44#/source/source-catalog6、设置或获取 href 属性中跟在问号后面的部分
window.location.search
resource_id=bee59caad39a490e9411c5af1dfcab407、设置或获取 href 属性中在井号“#”后面的分段
window.location.hash
#/source/source-catalog
文章标题:window.location 方法及作用
文章链接:http://soscw.com/index.php/essay/88561.html