$(function(){ //菜单 $(".nav li").mouseover(function(){ var height = $(this).find('div a').size() * 37; $(this).find('div').stop().animate({height: height+'px'},{queue:false, duration:500}); }); $(".nav li").mouseout(function(){ $(this).find('div').animate({height:'0px'},{queue:false, duration:500}); }); });