Hola
vicvallo
Es posible que haya alguna forma de controlarlo con expresiones regulares, pero yo no lo he conseguido. Te dejo esto para que lo pruebes:
Código:
<html>
<head>
<script>
function validar(e,txt) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==8) return true;
if (tecla==46 && txt.indexOf('.') != -1) return false;
patron = /[\d\.]/;
te = String.fromCharCode(tecla);
return patron.test(te);
}
</script>
</head>
<body>
<input type="text" name="textfield" onkeypress="return validar(event,this.value)">
</body>
</html>
Saludos,