jQuery 属性操作 - addClass() 方法

实例

向第一个 p 元素添加一个类:

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

定义和用法

addClass() 方法向被选元素添加一个或多个类。

该方法不会移除已存在的 class 属性,仅仅添加一个或多个 class 属性。

提示:如需添加多个类,请使用空格分隔类名。

语法

  1. $(selector).addClass(class)
参数 描述
class 必需。规定一个或多个 class 名称。

使用函数来添加类

使用函数向被选元素添加类。

语法

  1. $(selector).addClass(function(index,oldclass))
参数 描述
function(index,oldclass) 必需。规定返回一个或多个待添加类名的函数。 - index - 可选。选择器的 index 位置。 - class - 可选。选择器的旧的类名。

实例

向元素添加两个类

如何向被选元素添加两个 class。

  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").addClass("intro note");
  8. });
  9. });
  10. </script>
  11. <style type="text/css">
  12. .intro
  13. {
  14. font-size:120%;
  15. color:blue;
  16. }
  17. .note
  18. {
  19. background-color:yellow;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <h1>This is a heading</h1>
  25. <p>This is a paragraph.</p>
  26. <p>This is another paragraph.</p>
  27. <button>向第一个 p 元素添加两个类</button>
  28. </body>
  29. </html>
  • 改变元素的类

    如任何使用 addClass() 和 removeClass() 来移除 class,并添加新的 class。

  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>