jQuery UI Accordion(默认隐藏所有)

发布于 2024-09-24 05:07:46 字数 187 浏览 4 评论 0原文

您好,我正在使用 jQuery UI Accodions

默认情况下,显示第一个手风琴,其他则隐藏。我想默认隐藏所有手风琴,直到用户单击它。

我该怎么做?

谢谢

Hello I am using jQuery UI Accodions

By default, the first accordion is shown and other are hidden. I would like to hide all the accordions by default until the user clicks it.

How do I do that ?

Thank You

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

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

发布评论

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

评论(4

最单纯的乌龟 2024-10-01 05:07:46

这段代码应该可以完成这个任务

$( ".selector" ).accordion({ active: false });

This code should accomplish this

$( ".selector" ).accordion({ active: false });
雪落纷纷 2024-10-01 05:07:46

这是完成相应操作的更新代码。

$( ".selector" ).accordion({active: false , collapsible: true});

This is the updated code to accomplish the appropriate.

$( ".selector" ).accordion({active: false , collapsible: true});

故人如初 2024-10-01 05:07:46

“将 active 设置为 false 将折叠所有面板。这需要将可折叠选项设置为 true。”
http://api.jqueryui.com/accordion/#option-active

"Setting active to false will collapse all panels. This requires the collapsible option to be true."
http://api.jqueryui.com/accordion/#option-active

生死何惧 2024-10-01 05:07:46

要默认隐藏所有手风琴面板,您需要设置以下 2 个选项:

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

active 选项指定当前打开哪个面板。默认情况下它的值为0,即第一个面板。

collapsible 选项指定是否可以一次关闭所有部分。允许折叠活动部分。

To hide all the accordion's panel by default, you need to set the following 2 options:

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

The active option specifies which panel is currently open. By default its value is 0, i.e the first panel.

The collapsible option specifies whether all the sections can be closed at once. Allows collapsing the active section.

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