我想要的是当手风琴关闭时颜色变回黄色。
“在示例中,当我单击红色关闭选项卡时,颜色将变为黄色”
$("#accordion > li").click(function(){
$('.active').removeClass('active');
$(this).addClass('active');
if(false == $(this).next().is(':visible')) {
$('#accordion > ul').slideUp(300);
}
$(this).next().slideToggle(300);
});
var animationIsOff = $.fx.off;
$.fx.off = true;
$('#accordion > li:eq(0)').click()
$.fx.off = animationIsOff;