jQuery 深度链接插件(#hash 导航)
到目前为止我已经找到了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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SWFAddress 和 BBQ 都不错。如果您想继续自己执行此操作,可以同时使用
window.location.hash
和window.location.search
作为#
和查询字符串。例如:
这有点 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
andwindow.location.search
for the#
and the query string respectively.For example:
That's a bit hacky and for a more robust solution for the query string, you can check out Querystring