How to get list of Css class use in the HTML file?

后端 未结 6 2072
太阳男子
太阳男子 2020-12-14 23:23

I need list of classes used in an html file. Is there any tool where i can get list of classes in the HTML file?

6条回答
  •  无人及你
    2020-12-15 00:24

    If you've got jQuery on the page, run this code:

    var classArray = [];
    $('*').each(function(){if(this.className!=""){classArray.push(this.className)}})
    

    The variable classArray will contain all the classes specified on that HTML page.

提交回复
热议问题