jQuery BBQ PushState URL 没有显示它应该如何显示

发布于 2024-11-27 04:33:12 字数 146 浏览 1 评论 0原文

我正在使用 jQuery BBQ 插件,但我似乎无法以应有的方式显示 url。它是这样的, /#url=photographs.php%3F1 它应该是 /#url=photographs.php?1

想法吗?

i am using the jQuery BBQ plugin, and I cant seem to show the url the way it's supposed to look. It comes like this, /#url=photographs.php%3F1 were it's supposed to be /#url=photographs.php?1

Ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

野味少女 2024-12-04 04:33:12

这称为 URL 编码,由 jQuery.bbq.pushState(state) 为您完成。

在您的示例中,?1 等于 %3F1。您可以使用在线 URL 编码/解码工具来查看这一点。

如果您不希望这样,请尝试在您的参数中添加哈希符号:

jQuery.bbq.pushState('#' + state);

This is called URL encoding which jQuery.bbq.pushState(state) does for you.

In your example, ?1 equals %3F1. You can see this by using a online URL encode/decode tool.

If you don't want this, try adding a hash symbol to your argument:

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