swap classes on click

后端 未结 2 641
無奈伤痛
無奈伤痛 2021-01-15 23:30

I have a list of 6 items that are in a global div (navigationagence) Right now I am able to add a class on click but right now they adds up which means that once my six item

2条回答
  •  自闭症患者
    2021-01-15 23:40

    Alternatively you can use:

    $("#navigationagence ul li").click(function() {
        $(".currentagence").removeClass("currentagence");
        $(this).addClass("currentagence");
    });
    

提交回复
热议问题