在 JQuery UI 中,如何知道 Accordion 的当前状态(展开或折叠)?

发布于 2024-10-18 17:38:49 字数 46 浏览 3 评论 0原文

我正在使用 JQuery 手风琴。单击后,我想知道它的当前状态。我怎么知道呢?

I am using JQuery accordion. On click, I want to know the current status of it. How can I know it?

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

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

发布评论

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

评论(3

夜未央樱花落 2024-10-25 17:38:49

Jquery 在活动/打开的折叠面板上设置一个类:“ui-state-active”与“.ui-state-default”(这些是 Jquery 网站上的折叠面板演示中的类:http://docs.jquery.com/UI/Accordion)

编辑:您当然可以检查每个手风琴以查看它是否具有活动类别与默认类别

Jquery sets a class on the active/opened accordion: "ui-state-active" vs. ".ui-state-default" (these are the classes on the Accordion demo on Jquery website: http://docs.jquery.com/UI/Accordion)

Edit: You can of course then check each accordion to see if it has the active vs. default class

少年亿悲伤 2024-10-25 17:38:49

试试这个

if($('#my_accordion h3′).hasClass('ui-state-active')) {
// accordion is open
}
else {
// accordion is closed
}

try this

if($('#my_accordion h3′).hasClass('ui-state-active')) {
// accordion is open
}
else {
// accordion is closed
}
看轻我的陪伴 2024-10-25 17:38:49

在手风琴的 changestart (更改之前)和 change (更改之后)事件上,回调传递值 event用户界面。 ui 具有属性 newHeaderoldHeadernewContentoldContent,其中包含以下值您可以用来查看过去和现在的新旧标题和内容已扩展。无论您的触发事件是什么(单击、鼠标悬停等),这些事件都会发生

On the changestart (before a change) and change (after a change) event for the accordion, the callback passes the values event and ui. ui has properties newHeader, oldHeader, newContent, and oldContent containing the values of the new and old headers and contents that you can use to see what was and now is expanded. These events will happen on whatever your trigger event is for a change (click, mouseover, etc.)

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