Hola
mabarcau
Te completo el ejemplo de
flaviovich
Código:
<html>
<head>
<script type="text/javascript">
function validarNum(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" onkeypress = "return validarNum(event)" />
</body>
</html>
Saludos,