1. Effacez le point décimal à zéro :
function returnFloat0 (value) {
value = Math.round(parseFloat(value));
return value;
}
2. :
fonction returnFloat1(value) {
value = Math.round(parseFloat( value) * 10) / 10;
if (value.toString().indexOf(".") < 0) {
value = value.toString() " .0";
}
Valeur de retour;
}
3. Conserver deux points décimaux
fonction returnFloat2(value){
value = Math.round(parseFloat(value) * 100) / 100;
if (value.toString().indexOf( ".") < 0) {
value = value.toString() ".00";
}
Deux décimales et une décimale sont automatiquement remplis de zéros
Copier le code
//Ext.log (xsd .length);
if(xsd.length==1){
value = value.toString() ".00";
valeur de retour;
}
if(xsd .length> ;1){
🎜>}