10/09/2004, 23:44
|
| | | Fecha de Ingreso: enero-2003 Ubicación: Gerli, Avellaneda
Mensajes: 543
Antigüedad: 21 años, 10 meses Puntos: 4 | |
<script languaje="javascript">
function ContarCasillas(form) {
var total = 0;
var todas = form.chk.length;
for(i = 0; i < todas; i++)
if (form.chk[i].checked == true) {
total +=1;
}
if(total == 0) {
alert("Selecciona al menos una casilla antes de continuar")
}
}
</script>
<form name=a>
<input type=checkbox name=chk value=A>A<br>
<input type=checkbox name=chk value=B>B<br>
<input type=button onClick="ContarCasillas(this.form)" value=Verificar>
</form> |