H5新增获取元素的Dom方法以及类名操作

本文深入讲解了使用document.querySelector和document.querySelectorAll进行元素选择的方法,并详细介绍了classList API用于类名的添加、删除、判断和切换的技巧。
摘要由CSDN通过智能技术生成

新增获取元素方法:
document.querySelector(" “);单个元素获取
document.querySelectorAll(” "); 多个元素获取

<html>
  <body>
    <div class = "box box1">box1</div>
    <div class = "box box2">box2</div>
    <div class = "box box3">box3</div>
  </body>
  
  <script>
    //获取类名为box1的单个元素
    var box1 = document.querySelector(".box1");
    box1.style.color = "red";
    //获取类名为box的所有元素,返回值为数组
    var boxs = document.querySelectorAll(".box");
    //循环遍历数组
    for(var i=0,i<boxs.length,i++){
      boxs[i].innerHTML = "这是box"+i;
      boxs[i].style.backgroundColor = "pink";
    }
  </script>
</html>

新增的类名操作:加、删、判断、切换
加:
box.classList.add(“active”);
删:
box.classList.remove(“active”);
判断:
box.classList.contains(“active”); >>>>返回值是一个布尔值,true or false
切换:
box.classList.toggle(“active”);

<html>
 <style>
   .box{
     width:100px;
     height:50px;
     background-color:red;
     font-size:20px;
   }
   .active{
     background-color:blue;
     border-radius:20px;
   }
 </style>
 
 <body>
   <button onclick="addBtn()">增加类名</button>
   <button onclick="removeBtn()">删除类名</button>
   <button onclick="containsBtn()">判断类名</button>
   <button onclick="toggleBtn()">切换类名</button>
   <div class="box">Heelo H5</div>
   
   <script>
     var box = document.querySelector(".box");
     function addBtn(){
       box.classList.add("active");
   }
     function removeBtn(){
       box.classList.remove("active");
     }
     function containsBtn(){
       var activeIs = box.classList.contains("active");
       if(activeIs){
         box.classList.remove("active");
       }else{
         box.classList.add("active");
       }
     }
     function toggleBtn(){
       box.classList.toggle("active");
     }
   </script>
  </body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值