前端学习笔记--document.querySelectorAll遍历

  • for循环方式
for(var i= 0; i< document.querySelectopAll(".a").length; i ++){
        document.querySelectopAll(".a")[i].style.color= "red";
}
  • forEach

借助call()实现

[].forEach.call(document.querySelectorAll(".aa"), function(){ 
  console.log("1")       
});
参考:

https://www.cnblogs.com/yanze/p/5988142.html

你可能感兴趣的:(前端学习笔记--document.querySelectorAll遍历)