我的网站是用div制作的,当我点击导航栏中的部分名称时,我添加了下面的代码来滚动页面,我添加了下面的代码,在点击时将活动类添加到导航栏元素在它上面,但我希望活动类能够在滚动页面时更改导航栏。
我的代码:
//Adding Active class to the active section in navi bar
$('.navigationbar ul li a').click(function(){
$('li a').removeClass("active");
$(this).addClass("active");
});
//Anchor scrolling animations
var $root = $('html, body');
$('.anchor').click(function() {
$root.animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 500);
return false;
});