$(".jewel_new_li").hover(function(){
$(this).find(".jewel_hide").show().stop().animate({marginTop:"-65px"},300);
$(this).find(".jewel_p_ren").hide();
},function(){
$(this).find(".jewel_hide").stop().animate({marginTop:"-20px"},300);
$(this).find(".jewel_p_ren").show();
})
如上代码,在animate函数前加上stop()函数 这样 鼠标浮上 动画就不执行多次了