Perl:如何从查询字符串中提取内部页面锚点?

发布于 2025-01-02 18:10:56 字数 132 浏览 1 评论 0原文

给定: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 技术交流群。

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

发布评论

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

评论(2

别理我 2025-01-09 18:10:56

锚文本不是 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.

半仙 2025-01-09 18:10:56

请参阅 URI::Split 模块:

use URI::Split qw(uri_split);
my $uri = 'http://www.foo.com/bar.html#baz';
my ($scheme, $auth, $path, $query, $frag) = uri_split($uri);

$frag 变量将包含“baz”。

See the URI::Split module:

use URI::Split qw(uri_split);
my $uri = 'http://www.foo.com/bar.html#baz';
my ($scheme, $auth, $path, $query, $frag) = uri_split($uri);

The $frag variable will contain 'baz'.

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