在 JQuery UI 中,如何知道 Accordion 的当前状态(展开或折叠)?
我正在使用 JQuery 手风琴。单击后,我想知道它的当前状态。我怎么知道呢?
I am using JQuery accordion. On click, I want to know the current status of it. How can I know it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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
试试这个
try this
在手风琴的
changestart
(更改之前)和change
(更改之后)事件上,回调传递值event
和用户界面。
ui
具有属性newHeader
、oldHeader
、newContent
和oldContent
,其中包含以下值您可以用来查看过去和现在的新旧标题和内容已扩展。无论您的触发事件是什么(单击、鼠标悬停等),这些事件都会发生On the
changestart
(before a change) andchange
(after a change) event for the accordion, the callback passes the valuesevent
andui
.ui
has propertiesnewHeader
,oldHeader
,newContent
, andoldContent
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.)