导航在刷新页面的情况下,选中点击的那个菜单


        $(function(){
            var href = window.location.href;
            if(href.indexOf("Guanyu") > 0){
                $("#gy").attr("class","show");
              
            }
            else  if(href.indexOf("Waijiao") > 0){
                $("#wj").attr("class","show");
              
            }
            else   if(href.indexOf("Hezuo") > 0){
                $("#hz").attr("class","show");
              
            }
            else  if(href.indexOf("Zixun") > 0){
                $("#zx").attr("class","show");
              
            }
            else  if(href.indexOf("Fuwu") > 0){
                $("#fw").attr("class","show");
              
            }
            else  if(href.indexOf("Index") > 0){
                $("#ii").attr("class","show");
              
            }
            else   if(href.indexOf("Lianxi") > 0){
                $("#li").attr("class","show");
              
            }else{
                $("#ii").attr("class","show");
            }
        
        });

posted @ 2014-08-13 17:38  狩猎者一号  阅读(182)  评论(0)    收藏  举报