Hola a todos:
Usando expresiones regulares también podría valer
:
<html>
<head>
<script>
var no_digito = /\D/g;
</script>
</head>
<body >
<form>
<input type=text onkeyup="this.value = this.value.replace(no_digito, '')" />
</form>
</body>
</html>
Saludos