首页 > 语言 > JavaScript > 正文

jQuery给多个不同元素添加class样式的方法

2024-05-06 16:17:42
字体:
来源:转载
供稿:网友

这篇文章主要介绍了jQuery给多个不同元素添加class样式的方法,实例分析了addClass()方法添加样式的技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了jQuery给多个不同元素添加class样式的方法。分享给大家供大家参考。具体分析如下:

jQuery可以通过addClass()方法给多个不同的html元素同时添加相同的class

 

 
  1. <!DOCTYPE html> 
  2. <html> 
  3. <head> 
  4. <script src="js/jquery.min.js"
  5. </script> 
  6. <script> 
  7. $(document).ready(function(){ 
  8. $("button").click(function(){ 
  9. $("h1,h2,p").addClass("blue"); 
  10. $("div").addClass("important"); 
  11. }); 
  12. }); 
  13. </script> 
  14. <style type="text/css"
  15. .important 
  16. font-weight:bold; 
  17. font-size:xx-large; 
  18. .blue 
  19. color:blue; 
  20. </style> 
  21. </head> 
  22. <body> 
  23. <h1>Heading 1</h1> 
  24. <h2>Heading 2</h2> 
  25. <p>This is a paragraph.</p> 
  26. <p>This is another paragraph.</p> 
  27. <div>This is some important text!</div> 
  28. <br> 
  29. <button>Add classes to elements</button> 
  30. </body> 
  31. </html> 

希望本文所述对大家的jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选