在项目开发过程中,因为对应的行业不同,对于财务小数和数量的准确度不同,对与保留的小数也有很高的要求,在这里我汇总了一下网上的一些实现方式,并通过真实的项目验证,在这里作为备份,以备以后查找方便。
在实现中,javascript保留小数存在两种不同的方法,
一种是在原来数的基础保留小数,不够小数,补零处理。例如:0.56,保留三位小数,会自动加零变成 0.560,这种实现在实际的项目中对于财务数据是非常重要的。
另一种做法就是在原来数的基础上保留小数,对于不够小数,不进行处理。例如:0.56,保留三位小数,最后还是0.56。
在这两种实现中,需要根据实际的项目需要进行选择。下面我只列出针对上诉两种做法的一种实现。可能会有其它的实现方式,如果你有,可以分享出来。
第一种:补零处理方式
Js代码
- function roundNumber(number,decimals) {
- var newString;// The new rounded number
- decimals = Number(decimals);
- if (decimals < 1) {
- newString = (Math.round(number)).toString();
- } else {
- var numString = number.toString();
- if (numString.lastIndexOf(".") == -1) {// If there is no decimal point
- numString += ".";// give it one at the end
- }
- var cutoff = numString.lastIndexOf(".") + decimals;// The point at which to truncate the number
- var d1 = Number(numString.substring(cutoff,cutoff+1));// The value of the last decimal place that we'll end up with
- var d2 = Number(numString.substring(cutoff+1,cutoff+2));// The next decimal, after the last one we want
- if (d2 >= 5) {// Do we need to round up at all? If not, the string will just be truncated
- if (d1 == 9 && cutoff > 0) {// If the last digit is 9, find a new cutoff point
- while (cutoff > 0 && (d1 == 9 || isNaN(d1))) {
- if (d1 != ".") {
- cutoff -= 1;
- d1 = Number(numString.substring(cutoff,cutoff+1));
- } else {
- cutoff -= 1;
- }
- }
- }
- d1 += 1;
- }
- if (d1 == 10) {
- numString = numString.substring(0, numString.lastIndexOf("."));
- var roundedNum = Number(numString) + 1;
- newString = roundedNum.toString() + '.';
- } else {
- newString = numString.substring(0,cutoff) + d1.toString();
- }
- }
- if (newString.lastIndexOf(".") == -1) {// Do this again, to the new string
- newString += ".";
- }
- var decs = (newString.substring(newString.lastIndexOf(".")+1)).length;
- for(var i=0;i<decimals-decs;i++) newString += "0";
- //var newNumber = Number(newString);// make it a number if you like
- return newString;
- }
第二种:不补零的处理
Js代码
- function roundNumber(number,fractionDigits){
- with(Math){
- return round(number*pow(10,fractionDigits))/pow(10,fractionDigits);
- }
- }