//代码整理:懒人之家 www.lanrenzhijia.com $(function(){ //语音通知手风琴效果 $(".voice_2 ul li").each(function(){ var fold = $(this).find(".fold"); var unfold = $(this).find(".unfold"); if(fold.is(":hidden")){ $(this).width(480); }else{ $(this).width(177); } }); $(".voice_2 ul li").click(function(){ var li_index = $(this).index(); $(this).animate({width:480},200); $(this).find(".unfold").show(); $(this).find(".fold").hide(); $(this).siblings().animate({width:177},200); $(this).siblings().find(".unfold").hide(); $(this).siblings().find(".fold").show(); }); })