Get class list for element with jQuery

后端 未结 17 1635
粉色の甜心
粉色の甜心 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:38

    You should try this one:

    $("selector").prop("classList")
    

    It returns an array of all current classes of the element.

提交回复
热议问题