一个内容 div 和几个选项卡

发布于 2024-10-15 01:16:59 字数 290 浏览 2 评论 0原文

我有两种不同的菜单,一种是选项卡菜单,另一种是手风琴菜单。 我想为一个容器组织一些不同的选项卡,我的意思是手风琴菜单中会有不同数量的选项卡“ul”,但问题是,对于选项卡菜单,只能有一个由以下定义的选项卡 ul ID,不是按类别,但我想要至少 3 个或更多,无论如何你可以在这里看到所有代码: http: //jsfiddle.net/bq6tA/2/

你可以从那里看到选项卡菜单2和3的链接不会改变容器中的内容,这就是问题......

i have two different menus, one is tab menu, the other one is accordion menu.
i want to organize some variety of tabs for one container, i mean there will be various numbers of tab "ul" that will be in accordion menu, but the problem is that for the tab menu there only can be one tab ul that defined by ID, not by class, but i want at least 3 or more, anyway u can see all the code here: http://jsfiddle.net/bq6tA/2/

U can see from there that the links of Tab Menu 2 and 3 doesnt change the content in container, that's the problem...

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

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

发布评论

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

评论(1

老子叫无熙 2024-10-22 01:16:59

从第一个 ul 中删除 id="gstabs" 并更新您的 HTML:

<div id="gstabs">
<ul id="menu">
...
</ul>
</div>

无论您使用什么库来执行选项卡,都只会影响 id 为“gstabs”的元素的子元素

Remove id="gstabs" from the first ul and update your HTML as such:

<div id="gstabs">
<ul id="menu">
...
</ul>
</div>

Whatever library you're using to do the tabs is only affecting the children of the element with an id of 'gstabs'

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