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

261
Visualizações
Change value of an INPUT TEXT checking a checkbox

Why is this not working? It is supposed to work this way: if the checkbox is checked, it should take the content of a variable txt and write it to the input with id of show.

function myFunction() {
  if (document.getElementById('myRadio').checked) {
    var txt = "Done";
    document.getElementById("show").innerHTML = 'txt';
  }
}
<p>If the radio checkbox is checked the text from the variable text is written into input line with the ID of show</p>
        
<input type="checkbox" onclick="myFunction()" id="myRadio">

<br>
<br>

<input type="text" class="form-control" id="show">

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

0

You need to set the value property of the input element, not the innerHTML:

function myFunction() {
    if (document.getElementById('myRadio').checked){
        var txt = "Done";
        document.getElementById("show").value = txt;
    } else {
        document.getElementById("show").value = '';
    }
}
<p>If the radio checkbox is checked the text from the variable text is written into input line with the ID of show</p>

<input type="checkbox" onclick="myFunction()" id="myRadio">
<br>
<br>

<input type="text" class="form-control" id="show">
    

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