jQuery 手风琴插件“活动”问题
我正在使用 jquery 手风琴插件。在此插件中,第一个可点击菜单元素已被选中并处于活动状态。我希望所有可点击的元素都以手风琴形式关闭。我该怎么做?我尝试“active: false”和“alwaysOpen: false”但不起作用。抱歉我的英语不好。
i'm using jquery accordion plugin. in this plugin first clickable menu element is already selected and active. i want all clickable elements are closed in accordion. how can i do this? i try "active: false" and "alwaysOpen: false" but not working. sorry for my poor english.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
根据 jqueryui 文档,初始化时需要将
collapsible
设置为true
:该示例来自 jQueryUI 文档。
According to the jqueryui documentation, you need to set
collapsible
totrue
when you initialise it:The example is from the jQueryUI documentation.
$( ".selector" ).accordion({ collapsible: true, active: false });
确保先写 collapsible: true 再写 active: false
$( ".selector" ).accordion({ collapsible: true, active: false });
make sure you write collapsible: true first and then active: false
确保两个选项都存在。
Make sure both options are present.
在
active
中使用false
http://jsfiddle.net/q8aYH/ 。但是collapsible
为true
是“true”方法......Use
false
inactive
http://jsfiddle.net/q8aYH/ . Butcollapsible
totrue
is 'true' method...我解决了。 jQuery版本引起的问题。我正在使用 1.3.2,我更改了 1.5,它已修复。
I solved. The problem caused by jQuery version. i'm using 1.3.2 i changed with 1.5 it fixed.