$(function(){ $(".gov_weixin_share .closeBtn").click(function(){ $(".gov_weixin_share").hide(); }) /*Nav*/ $(".topNav").hover(function(){ //$(".topNav .menuCon").addClass("borSecond"); },function(){ $(".topNav .menuCon").removeClass("borSecond"); $(".topNav .menuList ul li").removeClass("selected"); $(".topNav .menuCon .subcon").hide(); }) $(".topNav .menuList ul li").hover(function(){ index = $(".topNav .menuList ul li").index(this); $(this).addClass("selected").siblings().removeClass("selected"); $(".topNav .menuCon .subcon").eq(index).show().siblings().hide(); $(".topNav .menuCon").addClass("borSecond"); }) //数据 $(".menus07 .reportList tr:even").attr({"bgcolor":"#e5e5e5","height":"32"}); $(".menus07 .reportList tr:odd").attr({"bgcolor":"#ffffff","height":"36"}); //右侧浮窗 function rigScroll(){ var winWidth=$(window).width(); if(winWidth<1024){ $(".gov_weixin_share").hide(); }else{ var winRig=(winWidth-1005)/2-90; $(".gov_weixin_share").css({"right":winRig,"display":"block"}) } } rigScroll() $(window).scroll(function() { rigScroll() }); $(window).resize(function() { rigScroll() }); })