29/10/2004, 08:28
|
| | | Fecha de Ingreso: junio-2004 Ubicación: Acá
Mensajes: 1.166
Antigüedad: 20 años, 6 meses Puntos: 4 | |
<script>
function checkea()
{
var cont=0;
checks = document.getElementsByTagName('input');
for (i=0;i<checks.length;i++)
{
if (checks[i].type == "checkbox")
{
if (checks[i].checked) cont++;
}
}
alert('Hay ' + cont + ' checkbox marcados');
}
</script>
</head>
<body>
<input type=checkbox><br>
<input type=checkbox><br>
<input type=checkbox><br>
<input type=checkbox><br>
<input type=checkbox><br>
<input type=checkbox><br>
<input type=button value=checkea onclick=checkea()>
</body>
Última edición por SiR.CARAJ0DIDA; 29/10/2004 a las 08:35 |