Newbie_小白
没有都对的别人,也没有全错的自己,至少要有自己的坚持,无关他人、无关外物!
    //footer点击添加active class
    var indexFooter= document.querySelectorAll('#index_footer li');
    for (var i = 0;i < indexFooter.length; i++) {
        indexFooter[i].onclick=function(){
            document.querySelectorAll('#index_footer li').forEach(function (el) {
               el.classList.remove('active');
            })
            this.classList.add('active');
        }
    }

 

posted on 2017-10-09 16:31  Newbie_小白  阅读(179)  评论(0编辑  收藏  举报