javaScript获取当前Url的方法
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: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
thisU3 = window.location.pathname; // /admin/index.html
还没有评论,来说两句吧...