javaScript获取当前Url的方法

╰+攻爆jí腚メ 2022-08-20 08:15 361阅读 0赞

1.(获取全部的url)
方法1:var thisURL = document.URL; // http://localhost:81/admin/welcome.htm?Did=123
方法2:var thisHref = document.location.href; // http://localhost:81/admin/welcome.htm?Did=123
方法3:var thisURL = self.location.href; // http://localhost:81/admin/welcome.htm?Did=123
方法4:var thisURL = document.location; // http://localhost:81/admin/welcome.htm?Did=123

2.(适用于frame框架下获取链接)
方法1:var thisTLoc = top.location.href; // http://localhost:81/admin/index.html
方法2:thisPLoc = parent.document.location; // http://localhost:81/admin/index.html

  1. (获取网址)
    方法1:var thisTHost = top.location.hostname; // localhost
    方法2:var Url= location.hostname; // localhost

4.(获取url中不同部分)
thisU1 = window.location.protocol; // http:
thisU2 = window.location.host; // localhost:81

  1. thisU3 = window.location.pathname; // /admin/index.html

发表评论

表情:
评论列表 (有 0 条评论,361人围观)

还没有评论,来说两句吧...

相关阅读