Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Abimael

[Resolvido] Desabilitar radiobox

Recommended Posts

Como desabilitar os radiobox quando eu clicar em um check box?

 

<html>
<head>
<title>Documento sem título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<form name="form1" method="post" action="">
  <p> 
	<input type="checkbox" name="checkbox" value="checkbox">
	<input type="radio" name="radiobutton" value="radiobutton">
	<input type="radio" name="radiobutton" value="radiobutton">
	<input type="radio" name="radiobutton" value="radiobutton">
  </p>
  <p> 
	<input type="checkbox" name="checkbox2" value="checkbox">
	<input type="radio" name="radiobutton2" value="radiobutton">
	<input type="radio" name="radiobutton2" value="radiobutton">
	<input type="radio" name="radiobutton2" value="radiobutton">
  </p>
</form>
</body>
</html>

Compartilhar este post


Link para o post
Compartilhar em outros sites

Tente isso

 

 

<html>
<head>
<title>Documento sem título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<script>


function DesmarcaRadio(opt)
{
	var i = 0;
	var total=0;
	var opts = document.getElementsByTagName('input');

	while (i < opts.length) 
	{
		if(opts[i].checked == true){
		if (opts[i].getAttribute('type') == 'radio')
		 { opts[i].checked = false; }
		 }
		i++;
	}
   
   
   
}


</script>

<body>
<form name="form1" method="post" action="">
<p> 
<input type="checkbox" name="checkbox" value="checkbox" onclick="DesmarcaRadio(this)">
<input type="radio" name="radiobutton[]" value="radiobutton" onclick="checkbox.checked=false;">
<input type="radio" name="radiobutton[]" value="radiobutton" onclick="checkbox.checked=false;">
<input type="radio" name="radiobutton[]" value="radiobutton" onclick="checkbox.checked=false;">
</p>

</form>
</body>
</html>

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.