zoukankan      html  css  js  c++  java
  • js获取链接中的内容方法

    原文链接:http://caibaojian.com/177.html

    内容扩展

    对于像下面这样的网址
    http://www.caibaojian.com:80/fisker/post/0703/window.location.html?ver=1.0&id=6#imhere
    我们可以用javascript获得其中的各个部分
    1, window.location.href-----------整个URl字符串(在浏览器中就是完整的地址栏)
    本例返回值: http://www.caibaojian.com:80/fisker/post/0703/window.location.html?ver=1.0&id=6#imhere·

    2,window.location.protocol---------URL 的协议部分
    本例返回值:http:

    3,window.location.host----------URL 的主机部分
    本例返回值:www.caibaojian.com

    4,window.location.port-----URL 的端口部分
    如果采用默认的80端口(update:即使添加了:80),那么返回值并不是默认的80而是空字符
    本例返回值:""

    5,window.location.pathname(URL 的路径部分(就是文件地址))
    本例返回值:/fisker/post/0703/window.location.html

    6,window.location.search-------查询(参数)部分
    除了给动态语言赋值以外,我们同样可以给静态页面,并使用javascript来获得相信应的参数值
    本例返回值:?ver=1.0&id=6

    7,window.location.hash-------锚点
    本例返回值:#imhere

  • 相关阅读:
    New-SAN-FENG-YUN-三
    San丰-Cloud
    SpringBoot+MySQL+MyBatis+Shiro+AdminLTE
    SanFeng-Clound
    SanFengClound
    传奇音乐设置
    热血传奇GOM引擎问题集锦
    app测试
    接口测试
    题目
  • 原文地址:https://www.cnblogs.com/zst062102/p/11388561.html
Copyright © 2011-2022 走看看