[Resolvido] Desabilitar radiobox
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>Discussão (3)
Carregando comentários...