嵌套 jquery-ui 选项卡深度链接/片段
是否可以通过 url 片段链接到嵌套的 jquery ui 选项卡?
例如链接到:
foo.html#tab-1
没有问题。但链接到:
foo.html#tab-1-nestedtab-2 (这是位于外部选项卡内的选项卡内容)
不起作用。
jsfiddle 在这里: http://jsfiddle.net/HtrgA/
感谢任何帮助!
Is it possible to link into a nested jquery ui tab via url fragment?
for example linking to:
foo.html#tab-1
is no problem. But linking to:
foo.html#tab-1-nestedtab-2 (which is a tab content sitting inside the outer tab)
does not work.
jsfiddle here: http://jsfiddle.net/HtrgA/
Any help appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的处理方法是首先触发外部选项卡的 onclick 事件,然后触发内部选项卡。
但我实际上并不使用“选项卡”。相反,我对生成的 html 进行硬编码,这样我仍然可以使用主题,但加载时间很快,所以 ymmv。
How I handle this is to trigger the onclick event of the outer tab first, then the inner.
I don't actually use the 'tabs' though. Instead I hardcode the generated html so I can still use the theming but have fast load times so ymmv.