页面跳转改变nav效果

来源:互联网 发布:cf冰域炸服器软件 编辑:程序博客网 时间:2024/04/29 03:24
  1. $(document).ready(function(){
  2. $("#nav a").each(function(){  
            $this = $(this);  
            if($this[0].href==String(window.location)){  
                $this.addClass('class');  
            }  
        });  
  3. }
1 0
原创粉丝点击