Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/10/2003, 14:12
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola, magna.

Aquí te dejo otro ejemplo a ver si te sirve:
Código PHP:
<html>
<
head>
<
script>
function 
ir() {
    
numero=document.getElementById('num').value;
    if (
numero>50)
        
document.location.href='pagina1.html'
    
else
        
document.location.href='pagina2.html'
}
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000">
<input type="text" id="num">
<input type="button" onClick="ir()">
</body>
</html> 
Saludos,