“LOOP QuerySelectorAll” Respostas de código

LOOP QuerySelectorAll

Array.from(document.querySelectorAll(".ClassName")).forEach(function(element) {
//Stuff
});
ayaan

WantSelectoreall loop tudo encontrado

const cbox = document.querySelectorAll(".box");

 for (let i = 0; i < cbox.length; i++) {
     cbox[i].addEventListener("click", function() {
       cbox[i].classList.toggle("red");
     });
 }
Uninterested Unicorn

Respostas semelhantes a “LOOP QuerySelectorAll”

Perguntas semelhantes a “LOOP QuerySelectorAll”

Mais respostas relacionadas para “LOOP QuerySelectorAll” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código