Jump to content
Fórum Script Brasil
  • 0

mostrar valor


MTavares

Question

Caros colegas.

Estou desenvolvendo um site, só que estou com o seguinte obstáculo e conto com a ajuda de vocês. Tenho dois inputs tipo radio:

<input type="radio" name="Primeiro" value="sim" onclick="mostrar(1)" />
<input type="radio" name="Segundo" value="não" onclick="mostrar(2)" />
Ao clicar em um dos botões, o valor 2 abre um label e o valor 1 fecha o label, vejam:
<script>
function mostrar(valor){
   if(valor == 1){
    document.getElementById('nao_contribuinte').style.display="none";
    document.getElementById('sim_contribuinte').style.display="block";
}else if(valor == 2){
    document.getElementById('sim_contribuinte').style.display="none";
    document.getElementById('nao_contribuinte').style.display="block";
 }
}
</script>

<label id="sim_contribuinte" for="naocontribuinte" style="display: none">
</label>
<label id="nao_contribuinte" for="naocontribuinte" style="display: none">
<form method="post">

// Formulário

</form>

</label>
Até aqui tudo bem. Porém ao clicar no botão, ele fecha o label novamente e não o mantém aberto. Veja o botão abaixo:
<input type="image" src="imagens/talentos/enviar.png" width="100" height="27" alt="enviar"/>
Já coloquei o botão fora do label dessa forma:
<input type="image" src="imagens/talentos/enviar.png" width="100" height="27" alt="enviar" onclick="mostrar(2)"/>

... mas infelizmente não adiantou.....

Alguém teria uma boa solução para isso?

Obrigado desde já!

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...