美文网首页
url处理方法

url处理方法

作者: 牛妈代代 | 来源:发表于2019-08-06 11:46 被阅读0次

    使用window.location方法获取常用属性如下

    window.location.href 返回当前页面的 href (https://www.jianshu.com/)
    window.location.hostname 返回 web 主机的域名(www.jianshu.com)
    window.location.pathname 返回当前页面的路径或文件名(带/)
    window.location.port 返回但口号(8090)
    window.location.protocol 返回使用的 web 协议(http: 或 https:)
    window.location.search 返回请求的参数(?及后面内容)
    window.location.hash  获取 href 属性中在井号“#”后面的分段。
    window.location.assign  加载新文档
    
    

    设置url直接写相对于属性等一设置的url即可,多用于url传参;

    相关文章

      网友评论

          本文标题:url处理方法

          本文链接:https://www.haomeiwen.com/subject/lrdidctx.html