這就是我正在使用的:JsFiddle如何使所有菜單關閉的手風琴加載?
我想所有菜單默認關閉。
在此先感謝! PS:我對JavaScript一無所知,所以如果你用小提琴演示你的答案,這將有所幫助。
$('.info').find('.accordion-toggle').click(function() {
//Expand or collapse this panel
$(this).toggleClass("open").next().slideToggle('fast');
//Hide the other panels
$(".accordion-toggle").not($(this)).removeClass("open");
$(".accordion-content").not($(this).next()).slideUp('fast');
});
http://jsfiddle.net/etfs1L43/44/看到更新的小提琴 – prasanth