$(function() { //导航 $(".menu li:not(.hover)").hover(function(){ $(this).find(".navon").stop().animate({"top":"0"},500); $(this).find(".navcurbg").stop().animate({"top":"0"},350,function(){ $(this).parent().parent().next(".nav-son").slidedown(300); }); $(this).find(".navcur").stop().animate({"top":"59px"},500); },function(){ $(this).find(".nav-son").stop().slideup(50); $(this).find(".navon").stop().delay(50).animate({"top":"-59px"},100); $(this).find(".navcurbg").stop().delay(50).animate({"top":"-59px"},50); $(this).find(".navcur").stop().delay(50).animate({"top":"0"},100); }); $(".menu li.hover").hover(function(){ $(this).find(".nav-son").stop().slidedown(300); },function(){ $(this).find(".nav-son").stop().slideup(300); }); })