如何在jQuery中使用removeClass()方法?

要使用jQuery单击锚标记来添加类,请使用addClass()方法。要删除一个类,请使用removeClass()方法。

示例

您可以尝试运行以下代码,以了解如何使用jQuery删除类-

<html>
   <head>
      <script src = "https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
      <script>
         $(document).ready(function(){
          $("a").click(function(){
             $("a.active").removeClass("active");
             $(this).addClass("active");
           });
         });
      </script>
      <style>
         .active {
            font-size: 22px;  
         }
      </style>
   </head>
   <body>
      <a href="#" class="demo1">One</a>
      <a href="#" class="demo2">Two</a>
      <p>Click any of the link above and you can see the changes.</p>
   </body>
</html>