jQuery 深度链接插件(#hash 导航)

发布于 2024-08-13 18:39:28 字数 194 浏览 5 评论 0原文

到目前为止我已经找到了Address(SWFaddress 的端口?)和BBQ。存在哪些其他提供此功能的插件,哪个更好/标准?

到目前为止,我只构建了自己的 hackish #-reading 脚本,但需要一些可以处理多个变量的东西,即 #user=bob&sortBy= rating。

欢迎任何建议或意见。

谢谢!

So far I've found Address (port of SWFaddress?) and BBQ. Which other plugins that provide this functionality exist, and which is better/standard?

So far I've only built my own hackish #-reading scripts, but need something that can handle multiple variables, i.e. #user=bob&sortBy=rating.

Any suggestions or opinions are welcome.

Thanks!

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

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

发布评论

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

评论(1

棒棒糖 2024-08-20 18:39:28

SWFAddress 和 BBQ 都不错。如果您想继续自己执行此操作,可以同时使用 window.location.hashwindow.location.search 作为 # 和查询字符串。

例如:

var hash = window.location.hash;
var qs = window.location.search.substring(1).split("&"); // this is an array for the QS

这有点 hacky,对于查询字符串的更强大的解决方案,您可以查看 Querystring< /a>

SWFAddress and BBQ are both good. If you want to continue to do it on your own, you can use both window.location.hash and window.location.search for the # and the query string respectively.

For example:

var hash = window.location.hash;
var qs = window.location.search.substring(1).split("&"); // this is an array for the QS

That's a bit hacky and for a more robust solution for the query string, you can check out Querystring

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