欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

自定义方法,实现通过类名获取对象集合

程序员文章站 2022-03-13 13:55:16
...
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>自定义方法,实现通过类名获取对象集合</title>
  8. <style>
  9. .one{
  10. width:500px;
  11. height:500px;
  12. background-color: rgb(112, 236, 168);
  13. line-height: 100px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div class="one">
  19. <div class="one1">111122</div>
  20. <div class="one2 one1">3333444</div>
  21. <div class="one1">5555666。</div>
  22. <div class="three">7777888</div>
  23. <div class="three2">999</div>
  24. </div>
  25. <script>
  26. var ones = document.getElementsByClassName('one1');
  27. console.log(ones);
  28. for(var i = 0; i < ones.length; i++){
  29. ones[i].style.backgroundColor="red";
  30. ones[i].style.color="blue";
  31. }
  32. </script>
  33. </body>
  34. </html>

自定义方法,实现通过类名获取对象集合