¿Como valido mi checkbox,para que me obligue a seleccionar solo una opcion,al momento de ingresar el codigo y clave en las cajas de texto?.
gracias
Código:
<html> <head> <script> function verificar() { if ((document.formulario.valor.value == "") || (document.formulario.valor.value== null)) { alert("Debe seleccionar una opcion"); document.formulario.valor.focus(); return false; } else{ return true;} } </script> </head> <body> <form name=formulario action="juegos.php" method="POST" onSubmit="return verificar(this);"> <table align="center" width="225" cellspacing="3" cellpadding="3" border="3"> <td>jugador1<input type="radio" name="valor"></td> <td>jugador2 <input type="radio" name="valor"></td> </tr> <tr> <td align="center">jugador3 <input type="radio" name="valor"></td> <td align="center">jugador4 <input type="radio" name="valor"></td> </tr> <tr> <td align="right">codigo:</td> <td> <input type="text" name="codigo" size="20" maxlength="60"></td> </tr> <tr> <td align="right">Clave:</td> <td><input type="password" name="clave" size="20" maxlength="60"></td> </tr> <tr> <td colspan="2" align="center"><input type="Submit" value="Ingresar"> <input type="Reset" value="Borrar"></td> </tr> </table> </form> <br><br><br><br> </body> </html>