Bootstrap CSS Active Navigation

前端 未结 13 2318

On the Bootstrap website the subnav matches up with the sections and changes background color as you or scroll to the section. I wanted to create my own menu without all the

13条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-27 12:44

    This is what I ended up with since you have to clear the others as well.

    $('.navbar li').click(function(e) {
        $('.navbar li.active').removeClass('active');
        var $this = $(this);
        if (!$this.hasClass('active')) {
            $this.addClass('active');
        }
        e.preventDefault();
    });
    

提交回复
热议问题