Get class list for element with jQuery

后端 未结 17 1610
粉色の甜心
粉色の甜心 2020-11-22 03:20

Is there a way in jQuery to loop through or assign to an array all of the classes that are assigned to an element?

ex.

17条回答
  •  名媛妹妹
    2020-11-22 03:31

    You can follow something like this.

    $('#elementID').prop('classList').add('yourClassName')
    $('#elementID').prop('classList').remove('yourClassName')
    

提交回复
热议问题