jquery ui 手风琴
是否有可能使 jQuery UI Accordion 首次加载折叠,因此默认情况下不会加载打开或活动的选项卡。
我知道使其可折叠的选项,但我希望它完全折叠加载,然后用户选择一个选项卡。
我正在使用最新的 jquery 1.4.4 + jquery UI 自定义 1.8.6
谢谢。
Is it possible to make the jQuery UI Accordion first loads collapsed, so, no tab will load opened or active in default.
I know the option to make it collapsible but I want it to load totally collapsed then the user choses one tab.
I'm using the latest jquery 1.4.4 + jquery UI custom 1.8.6
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将 active 设置为 false,
这与将每个选项卡设置为 display:none 相同;
Set active to false
which is the same as setting each tab to display:none;
你可以使用这个:
jQuery Accordion open Collapsed
http://forum.jquery.com/topic/collapse-accordion-all-at-once
Can you use this:
jQuery Accordion open collapsed
http://forum.jquery.com/topic/collapse-accordion-all-at-once
只需将所有相应的内容元素设置为
display: none
即可。这将隐藏所有内容,直到单击手风琴标题展开其下方的内容。詹姆斯
Simply set all the according content elements to
display: none
. This will hide them all, until clicking the accordion title expands the content under it.James
这对我有用:
this worked for me: