Hola de nuevo.
El código funciona bien. Prueba este ejemplo:
Código javascript
:
Ver original<html>
<head>
<script type="text/javascript">
function validar(e) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==8) return true;
patron =/\d/;
te = String.fromCharCode(tecla);
return patron.test(te);
}
</script>
</head>
<body>
<input type="text" name="textfield" onkeypress="return validar(event)" />
</body>
</html>
Saludos,