$(function(){ /* 导航菜单 */ var mr; //设置子导航宽度 var url = location.href; if (url.indexof("english") < -1 || url.indexof("english")==-1) { $(".sub_nav").each(function(element,index){ var l=$(this).find("a").length, w=$(this).find("a").width(); mr=parseint($(this).find("a").css("margin-right")); if(element!=3){ $(this).width((mr+w)*l); } }); //设置子导航位置 $(".nav li").each(function(index,element){ /*if(index==4){ $(this).find(".sub_nav").css({ left:-188 }).find("a").eq() } if(index==5){ $(this).find(".sub_nav").css({ left:-180 }).find("a").eq() }*/ if(index>=7){ $(this).find(".sub_nav").css({ left:"auto", right:-mr }) } }); } //导航鼠标移入事件 $(".nav li").mouseenter(function(){ var subnav=$(this).find(".sub_nav"); if($(this).index()!=0){ if(subnav.length>0&&subnav.text().trim()!=""){ $(this).addclass("on1").siblings().removeclass("on1"); subnav.show(); //if ($(this).index()!=4) // $(".sub_bg").show(); $(".sub_bg").show(); } } }); //导航鼠标移出事件 $(".nav li").mouseleave(function(){ $(this).removeclass("on1"); $(this).find(".sub_nav").hide(); $(".sub_bg").hide(); }); $('.ln_box li').mouseenter(function(){ $(this).addclass("on"); }); $('.ln_box li').mouseleave(function(){ $(this).removeclass("on"); }); if($(".sidebar").hasclass("sidebar")){ $('.side_sub_nav').siblings("a").css({"border-bottom":"none"}); $('.side_nav li:last').find('.side_sub_nav').css({"border-bottom":"none"}); $('.side_nav li').eq(0).find("a").css({"border-top":"none"}); $('.side_nav li:last').find('a').css({"border-bottom":"none"}); $("#header").css({position:"fixed"}); $(".banner").css({position:"fixed"}); $(".sidebar").css({"height":$(document).height()}); /*左侧菜单*/ $(window).scroll(function(){ var stop=$(this).scrolltop();   var scrollheight = $(document).height();   var windowheight = $(this).height(); if(stop>230){ $("#header").css({top:230-stop}); $(".banner").css({top:230-stop}); }else{ $("#header").css({top:0}); $(".banner").css({top:0}); } if(stop>232){ $(".sidebar").addclass("sidebar_fixed"); $(".main").addclass("main_fixed"); if(stop + windowheight == scrollheight){     $(".sidebar").css({"height":windowheight-213}); }else { $(".sidebar").css({"height":scrollheight}); } }else{ $(".sidebar").removeclass("sidebar_fixed"); $(".sidebar").css({"height":windowheight}); $(".main").removeclass("main_fixed"); } }); } }) $(document).ready(function () { $('#wx').mousemove(function () { $('.ui-wx').show(); }); $('#wx').mouseleave(function () { $('.ui-wx').hide(); }); $('#investor').mousemove(function () { $('.ui-investor').show(); }); $('#investor').mouseleave(function () { $('.ui-investor').hide(); }); });