Created
April 27, 2011 17:46
-
-
Save Javlopez/944773 to your computer and use it in GitHub Desktop.
Solo numeros con 1 punto y maximo dos decimales
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
<!-- | |
function filterFloat(evt,input){ | |
// Backspace = 8, Enter = 13, ‘0′ = 48, ‘9′ = 57, ‘.’ = 46, ‘-’ = 43 | |
var key = window.Event ? evt.which : evt.keyCode; | |
var chark = String.fromCharCode(key); | |
var tempValue = input.value+chark; | |
if(key >= 48 && key <= 57){ | |
if(filter(tempValue)=== false){ | |
return false; | |
}else{ | |
return true; | |
} | |
}else{ | |
if(key == 8 || key == 13 || key == 0) { | |
return true; | |
}else if(key == 46){ | |
if(filter(tempValue)=== false){ | |
return false; | |
}else{ | |
return true; | |
} | |
}else{ | |
return false; | |
} | |
} | |
} | |
function filter(__val__){ | |
var preg = /^([0-9]+\.?[0-9]{0,2})$/; | |
if(preg.test(__val__) === true){ | |
return true; | |
}else{ | |
return false; | |
} | |
} | |
--> | |
</script> | |
<input type="text" name="moneda nac" id="moneda_nac" value="10" onkeypress="return filterFloat(event,this);"/> |
El código está genial, me funciono, pero duda como limito para que solo sea un entero y dos decimales ejemplo 1.40.
<input type="text" name="moneda nac" id="moneda_nac" value="10" onkeypress="return filterFloat(event,this);"/>
Como se haría para reemplazar el monto, sin tener que borrar todo el contenido del input?. Ejemplo, cuando escribes por ejemplo 5.55 y quieres reemplazar el entero, tienes que ir borrando todo hasta que llega al numero entero
Alguien sabe como editar el monto sin tener que borrar todo el contenido del input y volver a digitar el valor?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Se confirma que sigue gustando. Seria mucha molestia incluir que como mínimo también tenga 2 decimales?