参见英文答案 > Can I read the hash portion of the URL on my server-side application (PHP, Ruby, Python, etc.)? 12个
我的网址是
http://www.domain.com/seg_one/seg_two/seg_three#jumper
我想让#jumper成为当前网址的一部分
解决方法:
在JavaScript中,您可以通过window对象的location.hash
属性来获取它.即
window.location.hash; // will give you #jumper.
一旦你在客户端拥有它,从这里做任何你想要的东西.你甚至可以通过ajax调用将它发送回服务器.