需要 jquery ui 手风琴方面的帮助
我创建了一个手风琴菜单。这是我的 js 代码:
var menu = $('ul.menu', '#sidebar');
menu.accordion({
header: '.parent > a',
collapsible: true
});
这是我们所拥有的内容的重现: http://jsfiddle.net/chMPT/
这是我的想法:我希望菜单默认完全折叠我无法更改 html 结构,因为菜单是由 joomla 生成的。
我尝试使用 create 方法在创建手风琴时关闭活动菜单,但它无法正常工作。这是该代码:
var menu = $('ul.menu', '#sidebar');
menu.accordion({
create: function(event, ui) {
menu.accordion("activate" , false);
},
header: '.parent > a',
collapsible: true
});
有什么建议吗?
I have created an accordion menu. Here is my js code:
var menu = $('ul.menu', '#sidebar');
menu.accordion({
header: '.parent > a',
collapsible: true
});
Here is a recreation of what we have:
http://jsfiddle.net/chMPT/
Here's my delima: I want the menu to be completely collapsed by default and I can't change the html structure because the menu is produced by joomla.
I tried using the create method to close the active menu upon the creation of the accordion but it doesn't work right. And here's that code:
var menu = $('ul.menu', '#sidebar');
menu.accordion({
create: function(event, ui) {
menu.accordion("activate" , false);
},
header: '.parent > a',
collapsible: true
});
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它就像
编辑一样简单:关于活动选项的 jQuery UI 文档链接
its as simple as
EDIT: link to jQuery UI doc regarding the active option