
31/01/2003, 10:48
|
 | Colaborador | | Fecha de Ingreso: abril-2001
Mensajes: 353
Antigüedad: 23 años, 10 meses Puntos: 2 | |
Otra opcion <html>
<head>
<script language="JavaScript">
function handleClick(){
if (document.prueba.st[0].checked){
location.href="uno.htm";
}
if (document.prueba.st[1].checked){
location.href="dos.htm";
}
if (document.prueba.st[2].checked){
location.href="tres.htm";
}
if (document.prueba.st[3].checked){
location.href="dos.htm";
}
}
</script>
</head>
<body>
<form name="prueba" onClick="handleClick()">
<input type="radio" value="A" name="st">Selection A<br>
<input type="radio" value="B" name="st">Selection B<br>
<input type="radio" value="C" name="st">Selection C<br>
<input type="radio" value="D" name="st">Selection D<br>
</form>
</body>
</html>
Espero te sirva
Saludos
Rickoe |