假设使用location.href='test.html#name=007使URL跳转至007处:
用JS取锚点值:
location.hash
输出结果:
#name=007
若URL为location.href='test.html?name=007
用取JS获取?后面的值:
location.href.search()
输出结果:
?chen=陈建平
在获得了这两个值之后,可以再在后面加上.substring(1)将#或?去掉。
假设使用location.href='test.html#name=007使URL跳转至007处:
用JS取锚点值:
location.hash
输出结果:
#name=007
若URL为location.href='test.html?name=007
用取JS获取?后面的值:
location.href.search()
输出结果:
?chen=陈建平
在获得了这两个值之后,可以再在后面加上.substring(1)将#或?去掉。