Jquery Add active class to main menu

前端 未结 4 1072
别跟我提以往
别跟我提以往 2020-12-06 21:26

I\'m trying to add dynamic active class to my main menu, but i can\'t able to achieve this,

My jquery is,



        
4条回答
  •  有刺的猬
    2020-12-06 21:38

    ^^ same as above comment by Rory!!

    , if you still need you can do

    $("#navi a").live("click", function(){
      $("#navi a").removeClass("active");
      $(this).addClass("active")
    });
    

    If you have all the links pointing to a same page above solution works, as i see you going to traverse from one page to another this wont work.

    Thanks

提交回复
热议问题