$(window).scroll(function () { if($(this).scrollTop() >= 150) { jQuery(".nav").addClass("clone"); }else{ jQuery(".nav").removeClass("clone"); } }) //导航 $('.menu > li').hover(function(){ $(this).find('.children').animate({ opacity:'show', height:'show' },200); $(this).find('.xialaguang').addClass('navhover'); }, function() { $('.children').stop(true,true).hide(); $('.xialaguang').removeClass('navhover'); });