Bootstrap CSS Active Navigation

前端 未结 13 2125

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:57

    Add to your JavaScript:

    $(".menu li").click(function(e) {
        $(".menu li").removeClass("active");
        $(this).addClass("active");
        e.preventDefault();
    });
    
    0 讨论(0)
提交回复
热议问题