Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

290
Visualizações
Why is the elements text not changing?

I am trying to use JavaScript to change the text of this element. However it is not working. Here is the header im trying to change - enter image description here

var elem = document.getElementsByClassName("headertext");
elem.innerHTML = "hello world";
<ul class="headertable">
  <li>
    <p class="headertext">Home</p>
  </li>
  <li>
    <p class="headertext">About US</p>
  </li>
  <li>
    <p class="headertext">Contact US</p>
  </li>
</ul>

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

document.getElementsByClassName returns an array-like object of all child elements which have all of the given class name(s).

Here the elem will be an HTMLCollection. So elem.innerHTML is not valid.

So you should use the index to update the required node

like elem[0].innerHTML or elem[1].innerHTML or elem[2].innerHTML

var elem = document.getElementsByClassName("headertext");
elem[0].innerHTML = "hello world";
elem[1].innerHTML = "hello world 1";
elem[2].innerHTML = "hello world 2";
<ul class="headertable">
    <li><p class="headertext">Home</p></li>
    <li><p class="headertext">About US</p></li>
    <li><p class="headertext">Contact US</p></li>
</ul>

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda