当前位置: 首页 > 文档资料 > jQuery 入门教程 >

toggleClass(class )

优质
小牛编辑
127浏览
2023-12-01

描述 (Description)

如果指定的类不存在,则toggleClass( class )方法添加指定的类,如果存在,则删除指定的类。

语法 (Syntax)

以下是使用此方法的简单语法 -

<i>selector</i>.toggleClass( class )

参数 (Parameters)

以下是此方法使用的所有参数的说明 -

  • class - CSS类的名称。

例子 (Example)

下面的示例将删除一个类,只需单击一下,然后在第二次单击它将再次添加相同的类 -

<html>
   <head>
      <title>The Selecter Example</title>
      <script type = "text/javascript" 
         src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
      <script type = "text/javascript" language = "javascript">
         $(document).ready(function() {
            $("p#pid").click(function () {
               $(this).toggleClass("red");
            });
         });
      </script>
      <style>
         .red { color:red; }
      </style>
   </head>
   <body>
      <p class = "green">Click following line to see the result</p>
      <p class = "red" id = "pid">This is first paragraph.</p>
   </body>
</html>