1、将小数点清零:
function returnFloat0(value) {
value = Math.round(parseFloat(value));
return value;
}
value = Math.round(parseFloat(value));
return value;
}
2、保留一位小数点:
function returnFloat1(value) {
value = Math.round(parseFloat(value) * 10) / 10;
if (value.toString().indexOf(“.”) < 0) {
value = value.toString() + “.0”;
}
return value;
}
value = Math.round(parseFloat(value) * 10) / 10;
if (value.toString().indexOf(“.”) < 0) {
value = value.toString() + “.0”;
}
return value;
}
3、保留两位小数点
function returnFloat2(value){
value = Math.round(parseFloat(value) * 100) / 100;
if (value.toString().indexOf(“.”) < 0) {
value = value.toString() + “.00”;
}
return value;
}
value = Math.round(parseFloat(value) * 100) / 100;
if (value.toString().indexOf(“.”) < 0) {
value = value.toString() + “.00”;
}
return value;
}
4、保留两位小数点,一位小数自动补零
function returnFloat3(value) {
value = Math.round(parseFloat(value) * 100) / 100;
var xsd = value.toString().split(“.”);
//Ext.log(xsd.length);
if(xsd.length==1){
value = value.toString()+”.00″;
return value;
}
if(xsd.length>1){
if(xsd[1].length<2){
value = value.toString()+”0″;
}
return value;
}
}
value = Math.round(parseFloat(value) * 100) / 100;
var xsd = value.toString().split(“.”);
//Ext.log(xsd.length);
if(xsd.length==1){
value = value.toString()+”.00″;
return value;
}
if(xsd.length>1){
if(xsd[1].length<2){
value = value.toString()+”0″;
}
return value;
}
}
—-想了解更多的linux相关异常处理怎么解决关注<计算机技术网(www.ctvol.com)!!>
本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。
ctvol管理联系方式QQ:251552304
本文章地址:https://www.ctvol.com/jspttutorial/68333.html