PHP获取锚点属性

发布于 2024-11-11 17:25:37 字数 347 浏览 1 评论 0原文

可能的重复:
如何获取“中的哈希值” somepage.php#name”?

是否可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转角预定愛 2024-11-18 17:25:38

在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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文