获取导航的当前状态

$(document).ready(function(){
    $("#nav a").each(function(){  
        $this = $(this);  
        if($this[0].href==String(window.location)){ 
            $(this).parent("li").addClass("active");
        }  
    });
});

 

posted @ 2016-11-25 13:28  Horan  阅读(166)  评论(0编辑  收藏  举报