如何深层链接 YUI 3 Tabview?
我正在使用 YUI3,并且想要深层链接我的选项卡。我使用 YUI 的 tabview + 历史记录。如何更改 url 参数
/#tab-2 的值 替换为 /#tab-description
提前致谢。
Im using YUI3 and would like to deep link my tabs. I used tabview + history from YUI. how do i change the value for the url parameter
/#tab-2
replace to
/#tab-description
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用:
http://developer.yahoo.com/yui/3/api /HistoryHash.html
它有一个 setHash 方法可以为您完成这项工作。在幕后,它只是改变了上面的内容。理想情况下,您将在历史记录中拥有某种基础设施来侦听哈希更改事件(http://developer.yahoo.com/yui/3/api/HistoryBase.html,history:change)以检测更改并执行您的应用程序代码)
You can use:
http://developer.yahoo.com/yui/3/api/HistoryHash.html
It has a setHash method which can do that work for you. Under the hood, it just changes what you have above. Ideally, you'll have some sort of infrastructure in history to listen for the hash change events (http://developer.yahoo.com/yui/3/api/HistoryBase.html, history:change) to detect the change and perform you application code)