$(function(){ //语音通知手风琴效果 $(".fy_det ul li").each(function(){ var fold = $(this).find(".fold"); var unfold = $(this).find(".unfold"); if(fold.is(":hidden")){ $(this).width(126); }else{ $(this).width(226); } }); $(".fy_det ul li").mouseenter(function(){ var li_index = $(this).index(); $(this).stop(true,true).animate({width:226},200); $(this).find(".unfold").stop(true,true).hide(); $(this).find(".fold").stop(true,true).show(); $(this).siblings().stop(true,true).animate({width:126},200); $(this).siblings().find(".unfold").stop(true,true).show(); $(this).siblings().find(".fold").stop(true,true).hide(); }); })