Ver Mensaje Individual
  #12 (permalink)  
Antiguo 29/08/2002, 06:29
javvv
 
Fecha de Ingreso: julio-2002
Mensajes: 54
Antigüedad: 22 años, 4 meses
Puntos: 0
Re: Validar numeros

Solo con esto es lo que me da error

<html>

<script>
function probar(num) {

if (IsNaN(num)) {alert("No es un número")}
else {alert("Si es un número")}

}
</script>


<body>

<form method="post" action="">
<input type='text' name='valor' onchange='probar(this.value)'>
<input type="submit" name="Submit" value="Send Data">
</form>
</body>
</html>