$(function(){ //二级导航 $(".header_aBlock").hover(function(){ $(this).find(".nav_content").stop(true,true).fadeIn(); },function(){ $(".nav_content").stop(true,true).fadeOut(); }) //全屏自适应 var wHeight = $(window).height(); function resize(){ wHeight = $(window).height(); if(!$("body").hasClass("index_bodyer")){ } } resize(); $(window).resize(function(){ resize(); }); //if(client.browser.ie > 7 || client.browser.ie == 0){ // $("html").niceScroll({cursorcolor:"#5c5c5c",cursoropacitymin: 1,zindex:99999,spacebarenabled: true}); //} })