手风琴中的 jQuery UI 手风琴

发布于 2024-11-02 22:44:24 字数 194 浏览 1 评论 0原文

是否可以使用 jQuery UI 将一个手风琴嵌入到另一个手风琴中?

-Item One
-Item Two
-Item Three
  --Sub One
  --Sub Two
  --Sub Three
-Item Four

其中 Sub One 到 Four 是另一个手风琴。

谢谢

Is it possible to have an accordion embedded in another accordion with jQuery UI?

-Item One
-Item Two
-Item Three
  --Sub One
  --Sub Two
  --Sub Three
-Item Four

Where Sub One through Four is another accordion.

Thanks

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

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

发布评论

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

评论(2

我是有多爱你 2024-11-09 22:44:24

为您想要制作手风琴的每个容器提供一个类似 accordion 的类,并使用:

$(".accordion").accordion();

Give each container that you want to make an accordion a class like accordion and use:

$(".accordion").accordion();

破晓 2024-11-09 22:44:24

只需为每个手风琴提供不同的 id 名称并在 jquery 函数中调用它们,您就必须编辑 css 以获得所需的外观。

$(function() {
    $( "#accordion,#accordion2" ).accordion();
  });

演示

Just give different id names for each accordion and call them in the jquery function an you would have to edit the css to get the desired look though.

$(function() {
    $( "#accordion,#accordion2" ).accordion();
  });

DEMO

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