difference between toggleclass and addclass

后端 未结 4 926
無奈伤痛
無奈伤痛 2021-02-20 14:35

I am working with jquery and attempting to add a class to a table on the selection of that table row.

I was initially using the following code -

$(this)         


        
4条回答
  •  醉话见心
    2021-02-20 15:02

    If addClass is working for you, then you should stick with it. The methods are meant for different purposes. addClass ensures that a particular class is present on an element, while toggleClass adds the class if it isn't there and removes it if it is.

    Check out the API reference for the full explanation of each method:

    • http://api.jquery.com/toggleClass/
    • http://api.jquery.com/addClass/

提交回复
热议问题