window.location.search.substr(一).split(\"&\")代表什么意思

window.location.search.substr(1).split(\”&\”)代表什么意思
window.location
window的location对象

search
得到的是url中query部分

substr()
返回一个从指定位置开始的指定长度的子字符串
这里设置为1,是为了把url中的?号去掉

split()
将一个字符串分割为子字符串,然后将结果作为字符串数组返回
这里就是把query部分以&为分割符,分割

测试:把下面代码保存为1.htm
注意是1.htm

<script language="javascript">
alert(window.location.search.substr(1).split("&"))
script>
<a href="1.htm?topic=1&id=2">测试a> 

你可能感兴趣的:(window.location.search.substr(一).split(\"&\")代表什么意思)