jQuery 属性操作 - removeClass() 方法

实例

移除所有 <p> 的 "intro" 类:

  1. $("button").click(function(){
  2. $("p:first").removeClass("intro");
  3. });

定义和用法

removeClass() 方法从被选元素移除一个或多个类。

注释:如果没有规定参数,则该方法将从被选元素中删除所有类。

语法

  1. $(selector).removeClass(class)
参数 描述
class 可选。规定要移除的 class 的名称。 如需移除若干类,请使用空格来分隔类名。 如果不设置该参数,则会移除所有类。

使用函数来移除类

使用函数来删除被选元素中的类。

  1. $(selector).removeClass(function(index,oldclass))
参数 描述
function(index,oldclass) 必需。通过运行函数来移除指定的类。 - index - 可选。接受选择器的 index 位置。 - html - 可选。接受选择器的旧的类值。

实例

改变元素的类

如何使用 addClass() 和 removeClass() 来移除一个类,并添加一个新的类。

  1. <html>
  2. <head>
  3. <script type="text/javascript" src="/jquery/jquery.js"></script>
  4. <script type="text/javascript">
  5. $(document).ready(function(){
  6. $("button").click(function(){
  7. $("p:first").removeClass("intro").addClass('main');
  8. });
  9. });
  10. </script>
  11. <style type="text/css">
  12. .intro
  13. {
  14. font-size:120%;
  15. color:red;
  16. }
  17. .main
  18. {
  19. font-size:90%;
  20. color:blue;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <h1>This is a heading</h1>
  26. <p class="intro">This is a paragraph.</p>
  27. <p>This is another paragraph.</p>
  28. <button>改变第一个段落的类</button>
  29. </body>
  30. </html>