Perl:如何从查询字符串中提取内部页面锚点?
给定:http://www.foo.com/bar.html#baz
如何获得baz
?
我在 CGI::params 中找不到此选项。
Given: http://www.foo.com/bar.html#baz
How does one get the baz
?
I can't find this as an option in CGI::params.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
锚文本不是 HTTP 请求的一部分。它仅在客户端使用。
如果您确实需要它,则需要编写一些 Javascript 来获取
window.location.hash
属性并通过某种方式将其发送到您的服务器。Anchor text is not part of the HTTP request. It's used only on the client side.
If you really want it, you'll need to write some Javascript that grabs the
window.location.hash
property and sends it to your server by some means.请参阅 URI::Split 模块:
$frag
变量将包含“baz”。See the URI::Split module:
The
$frag
variable will contain 'baz'.