当前位置:   article > 正文

标签的选择器赋值

标签的选择器赋值

有时候,我们会有需求就是在不同的条件下让页面的某个组件或者背景按照一定的规则进行变化,实现的思路是,给标签在特定条件赋不同或者赋多个选择器去改变他的样式,那么随着需求的变化多端,我们想要让js来操作实现给dom添加选择器,有三种方式,

第一种,直接调用dom自带的属性style进行选择对应的样式属性赋值

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box {
  9. width: 200px;
  10. height: 200px;
  11. background-color: #000;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div class="box"></div>
  17. <script>
  18. const box = document.querySelector(".box")
  19. // 这种方式也可以用
  20. box.style["background-color"] = 'pink'
  21. // box.style.backgroundColor = 'pink'
  22. </script>
  23. </body>
  24. </html>

第二种,className属性,直接给dom添加一个新的样式选择器,但是有个弊端,会新选择器覆盖掉就选择器。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. div {
  9. width: 200px;
  10. height: 200px;
  11. background-color: pink;
  12. }
  13. .box {
  14. width: 300px;
  15. height: 500px;
  16. background-color: blue;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div></div>
  22. <script>
  23. const div = document.querySelector("div")
  24. // className有个弊端就是 会新值覆盖了旧值 解决办法就是每次赋值的时候 把两个类名都赋值上去
  25. div.className = "box"
  26. </script>
  27. </body>
  28. </html>

第三种,classList属性,可以添加也可以删除样式也可以替换选择器。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box {
  9. width: 200px;
  10. height: 200px;
  11. background-color: #fff;
  12. color: aqua;
  13. }
  14. .active {
  15. background-color: red;
  16. font-size: 800;
  17. color: blue;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="box">文字</div>
  23. <script>
  24. const box = document.querySelector(".box")
  25. // 删除类名 remove() 切换类 toggle()
  26. box.classList.add("active")
  27. </script>
  28. </body>
  29. </html>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/355445
推荐阅读
相关标签
  

闽ICP备14008679号