js 导航栏进行切换刷新页面导致class消失问题

$(".navbar .i").each(function (){
    if($($(this))[0].href==String(window.location)){
        console.log('当前链接',String(window.location))

        $(this).addClass('active');
    }else {
        console.log('其他链接',String(window.location))
        $(this).removeClass('active');
    }
})

你可能感兴趣的:(前端,javascript,前端)