PHP获取锚点属性
是否可以使用 PHP 获取锚点名称?
例如,对于此 URL:
http://domain.com/#departments
如何获取文本“departments”?
Possible Duplicate:
How to get the value after the hash in “somepage.php#name”?
Is it possible to get an anchor name with PHP?
For example, for this URL:
http://domain.com/#departments
How can I get the text "departments"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在php中没有办法获取“#”后面的内容,因为这些数据没有提供给服务器,只有“#”后面没有数据的url,但是如果你通过JavaScript执行php脚本,你总是可以将url拆分为“#” " 并将数据作为参数或某些隐藏字段的值发送。
There is no way to get things after "#" in php, because this data is not provided to server, only url without data after "#", but if you are executing php script through JavaScript, you can Always split url into "#" and send the data as parameter or value of some hidden field.