手风琴中的 jQuery UI 手风琴
是否可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为您想要制作手风琴的每个容器提供一个类似
accordion
的类,并使用:$(".accordion").accordion();
Give each container that you want to make an accordion a class like
accordion
and use:$(".accordion").accordion();
只需为每个手风琴提供不同的 id 名称并在 jquery 函数中调用它们,您就必须编辑 css 以获得所需的外观。
演示
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.DEMO