“JavaScript Get Element Nth Child” Respostas de código

Como conseguir o enésimo filho de Dom JS

 //method one 
  var c = document.getElementById("myDIV").childNodes;
  c[1].style.backgroundColor = "yellow";//first child
  c[2].style.backgroundColor = "red";//second child
  c[-1].style.backgroundColor = "green";//last child
  c[-2].style.backgroundColor = "blue";//secound last child
//method two
 let nth-child = document.querySeletorAll('myDiv:nth-child(n)');//gives nth child 
uzii

JavaScript Get Element Nth Child

//you can use the css nth-child property like this:
var second-child = document.querySeletorAll('[your element name]:nth-child(2)');
Wicked Warbler

Respostas semelhantes a “JavaScript Get Element Nth Child”

Perguntas semelhantes a “JavaScript Get Element Nth Child”

Mais respostas relacionadas para “JavaScript Get Element Nth Child” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código