如何使用 jQuery 删除所有 CSS 类?


若要删除所有类,请在 removeClass() 方法中不设置任何参数。这将删除该项的所有类。

示例

你可以尝试运行以下代码,使用 jQuery 删除所有 CSS 类

即时演示

<html>
   <head>
      <title>jQuery Selector</title>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
   
      <script>
         $(document).ready(function() {
           $("#button1").click(function(){
             $("p").removeClass();
           });
         });
      </script>
       
      <style>
         .red { color:red; }
         .blue { color:blue; }
      </style>
   </head>
   
   <body>
      <p class = "red" >This is first paragraph.</p>
      <p class = "blue">This is second paragraph.</p>
      <button id="button1">Remove</button>
   </body>
</html>

更新于: 2019 年 12 月 6 日

5 千+ 浏览量

开启你的职业

完成课程获得认证

开始
广告