如何使用jQuery单击锚标记来添加类?

要使用jQuery单击锚标记添加一个类,请使用addClass()方法。您可以尝试运行以下代码,以了解如何通过使用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="">One</a>
      <a href="#" class="">Two</a>
      <p>Click any of the link above and you can see the changes.</p>
   </body>
</html>