jquery 两级选项卡
我需要有两级选项卡导航。
基本上是这样的:
Tab1 Tab2 Tab3
TabA TabB TabC
当用户单击例如 Tab2 时,他可以再次从第二级选项卡(TabA、TabB 等)中进行选择。
我可以完成第一级,但无法完成第二级。我怎样才能把它放在第一级选项卡中。
I need to have two level tab navigation.
Basically like this:
Tab1 Tab2 Tab3
TabA TabB TabC
When user clicks for example Tab2 he then can choose again from 2nd level tabs (TabA, TabB etc).
I can make the first level ok but I can't make the 2nd level. How can i put it in the first level tabs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将第二组选项卡嵌套在 html 内的第一组选项卡中,如下所示:
.. 并在文档就绪时将它们初始化,如下所示:
如果有疑问,请查看 jQuery 选项卡 api 文档 http://docs.jquery.com/UI/Tabs
Just nest the second set of tabs within the first set inside your html like so:
..and initialize them both on document ready like so:
When in doubt, check out the jQuery tabs api documentation at http://docs.jquery.com/UI/Tabs