Add & remove active class from a navigation link

前端 未结 4 442
有刺的猬
有刺的猬 2020-12-18 03:50

I have been looking for tutorials on how to add and remove a class from a link unfortunately without any success. All the earlier questions on this have give me some underst

相关标签:
4条回答
  • 2020-12-18 04:42

    I think you want:

    $this.parents("ul").find("a").removeClass('active');
    
    0 讨论(0)
  • 2020-12-18 04:46

    You're removing the 'active' class from the closest li's child element, and then you're adding the active class to the current a's parent li. In the spirit of keeping the active class on the anchors and not the list items, this will work for you:

        $('li a').click(function(e) {
            e.preventDefault();
            $('a').removeClass('active');
            $(this).addClass('active');
        });
    

    The active link is the active link. There'd never be more than one link active at any given time, so there's no reason to be all specific about removing the active class. Just remove from all anchors.

    Demo: http://jsfiddle.net/rq9UB/

    0 讨论(0)
  • 2020-12-18 04:51

    Try:

    $(function() {
        $('li a').click(function(e) {
            e.preventDefault();
            var $this = $(this);
            $this.closest('ul').find('.active').removeClass('active');
            $this.parent().addClass('active');
    
        });
    });
    

    Your selector was looking at the parent element of the current ($(this)) a element, and then looking among the children of that element for an a. The only a in that element is the one you just clicked.

    My solution instead moves up to the closest ul and then finds the element that currently has the class ofactive` and then removes that class.

    Also your approach, as posted, was adding the active class-name to the li element, and you were looking to remove the class-name from an a element. My approach uses the li, but that can be amended to use the a by simply removing the parent() from the final line.

    References:

    • children().
    • closest().
    • find().
    0 讨论(0)
  • 2020-12-18 04:54

    Try this:

    $(function() {
        $('.start').addClass('active');
            $('#main-nav a').click(function() {
            $('#main-nav a').removeClass('active');
            $(this).addClass('active');             
       });
    });
    

    Just add the class .start to the nav element you want to have the class .active first.

    Then declare the class .active in your css like:

    #main-nav a.active {
    
    /* YOUR STYLING */
    
    }
    
    0 讨论(0)
提交回复
热议问题