导航栏被点击事件
/*导航栏被点击事件*/ $(".head_navigation_link").click(function(){ $this = $(this); $this.siblings().find('a').removeClass("head_navigation_active"); $this.find('a').addClass("head_navigation_active"); //判断点击的是否为首页,如果是首页,就设置宽度为100%,否则设置宽度为73% if($this.hasClass('isIndex')){ $(".content_wrapInner").width("99.8%"); $(".content").css({ height:"100%", top:"100px", zIndex:"1" }); }else{ $(".content_wrapInner").width("73%"); $(".content").css({ height:"auto", top:"127px", zIndex:"0" }); } });

浙公网安备 33010602011771号