19/02/2006, 08:50
|
| Colaborador | | Fecha de Ingreso: febrero-2002 Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses Puntos: 772 | |
Hola micelo. Bienvenido al foro.
Prueba esto:
Código:
<html>
<head>
<script type="text/javascript">
function ir(frm) {
dire='';
for(i=0; ele=frm.elements[i]; i++)
if(ele.type=='checkbox' && ele.checked)
dire+=ele.value;
if (dire!='')
location=dire+'.html';
}
</script>
</head>
<body>
<form>
<input type="checkbox" value="a" />
<input type="checkbox" value="b" />
<input type="checkbox" value="c" />
<input type="button" onclick="ir(this.form)" />
</form>
</body>
</html>
Saludos, |