1,什么是window.location?示例
URL:
属性含义值protocol: 协议 "http:"
hostname: 处事器的名字 "b.a.com"
port: 端口 "88"
pathname: URL中主机名后的部分 "/index.php"
search: "?"后的部分,又称为盘问字符串 "?name=kang&when=2011"
hash: 返回"#"之后的内容 "#first"
host: 即是hostname + port "b.a.com:88"
href: 当前页面的完整URL "http://www.a.com:88/index.php?name=kang&when=2011#first"
window.location和document.location互相等价的,可以交换使用
location的8个属性都是可读写的,但是只有href与hash的写才有意义。例如转变location.href会从头定位到一个URL,,而改削location.hash会跳到当前页面中的anchor(<a>或者<div>等)名字的符号(如果有),而且页面不会被从头加载
注意
URL:
hash:"#when=2011#first" 第一个"#"之后的内容
2,为什么 window.location.search 为空?
答:注意上面的search和hash的区别,如果URL中“?”之前有一个“#”好比:“:63342/index.html#/version?type=35&id=5”那么使用window.location.search得到的就是空(“”)。因为“?type=35&id=5”串字符是属于“#/version?type=35&id=5”这个串字符的,也就是说盘问字符串search只能在取到“?”后面和“#”之前的内容,如果“#”之前没有“?”search取值为空。
3,应用
//获取url参数 function GetQueryString (name) { var after = window.location.hash.split("?")[1]; if(after) { var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = after.match(reg); if(r != null) { return decodeURIComponent(r[2]); } else { return null; } }
原文地点:
为什么 window.location.search 为空?