jquery ui 手风琴

发布于 2024-10-04 10:14:30 字数 171 浏览 4 评论 0原文

是否有可能使 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 技术交流群。

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

发布评论

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

评论(4

往日 2024-10-11 10:14:30

将 active 设置为 false,

这与将每个选项卡设置为 display:none 相同;

Set active to false

which is the same as setting each tab to display:none;

你是年少的欢喜 2024-10-11 10:14:30

只需将所有相应的内容元素设置为 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

绅士风度i 2024-10-11 10:14:30

这对我有用:

$("#accordion").accordion({
            heightStyle: "content", header: "h3", collapsible: true, active: false
        });

this worked for me:

$("#accordion").accordion({
            heightStyle: "content", header: "h3", collapsible: true, active: false
        });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文