por favor prueba este codigo
Código Javascript
:
Ver original<html>
<head>
<script>
function solonumero(evt)
{
var charcode = (evt.which) ? evt.which : event.keycode
if (charcode > 31 && (charcode < 48 || charcode > 57))
return false;
return true;
}
</script>
</head>
<body>
<input id="text" onkeypress="return solonumero(event)" type="text" name="txttexto">
</body>
</html>