09/03/2005, 10:40
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 22 años, 11 meses Puntos: 61 | |
<html>
<head>
<title>Untitled</title><script>
function validar(esto){
valido=0;
for(a=0;a<esto.elements.length;a++){
if(esto[a].type=="checkbox" && esto[a].checked==true){
valido+=1;
}
}
if(valido!=1){
alert("No puede chequear más de una casilla!");
return false;
}
}
</script>
</head>
<body>
<form action ="javascript:alert('Mandandooo!!!')" name="aa323" onsubmit="return validar(this)">
<input type="checkbox" name="pedpe1"><br />
<input type="checkbox" name="pedpe2"><br />
<input type="checkbox" name="pedpe3"><br />
<input type="checkbox" name="pedpe4"><br />
<input type="checkbox" name="pedpe5"><br />
<input type="submit" name="pepe"></form>
</body>
</html>
__________________ Cómo escribir
No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |