求和值时出现Javascript舍入问题



可能重复:
是JavaScript';s数学坏了吗?

用户在前两个文本框中输入值,当他们输入时,Javascript(对不起,没有jQuery,我还不能使用它)用于计算精确的和,和四舍五入到2位数。

为什么我会出现舍入错误,我该怎么做才能纠正它?

非常感谢。

嗯。。。。ParseFloat?数据类型错误?

我想看看的是,如果把精确的答案加在计算器上。我可以使用parseDecimal或其他数据类型吗?

[在此输入图像描述][1]

    function SumValues() {
        //debugger;
        var txtSubsContrRbtAmt = document.getElementById("<%=txtSubsContrRbtAmt.ClientID%>");
        var txtDeMinAmt = document.getElementById("<%=txtDeMinAmt.ClientID%>");
        var txtTotRbtAmt = document.getElementById("<%=txtTotRbtAmt.ClientID%>");
        var txtRndRbtAmt = document.getElementById("<%=txtRndRbtAmt.ClientID%>");
        var total = Add(txtSubsContrRbtAmt.value, txtDeMinAmt.value);
        txtTotRbtAmt.value = total;
        txtRndRbtAmt.value = RoundToTwoDecimalPlaces(total);
    }
    function Add() {
        var sum = 0;
        for (var i = 0, j = arguments.length; i < j; i++) {
            var currentValue;
            if (isNumber(arguments[i])) {
                currentValue = parseFloat(arguments[i]);
            }
            else {
                currentValue = 0;
            }
            sum += currentValue;
        }
        return sum;
    }
    function RoundToTwoDecimalPlaces(input) {
        return Math.round(input * 100) / 100
    }
    function IsNumeric(input) {
        return (input - 0) == input && input.length > 0;
    }
    function isNumber(n) {
        return !isNaN(parseFloat(n)) && isFinite(n);
    }
  [1]: https://i.stack.imgur.com/5Otrm.png

更新。我正在评估这样的东西:

function AddWithPrecision(a, b, precision) {
        var x = Math.pow(10, precision || 2);
        return (Math.round(a * x) + Math.round(b * x)) / x;
    }

对于任何在金融领域编写软件(或任何处理货币的软件)的人来说,都有一条黄金法则:永远不要使用浮动。因此,大多数处理货币的软件只使用整数,并将十进制数表示为数据结构。

这里有一种方法:

(注意:此函数添加两个看起来像数字的字符串)

(附加说明:不进行错误检查以帮助澄清。也不处理负数)

function addNumberStrings (a,b) {
    a = a.split('.');
    b = b.split('.');
    var a_decimal = a[1] || '0';
    var b_decimal = b[1] || '0';
    diff = a_decimal.length - b_decimal.length;
    while (diff > 0) {
        b_decimal += '0';
        diff --;
    }
    while (diff < 0) {
        a_decimal += '0';
        diff ++;
    }
    var decimal_position = a_decimal.length;
    a = a[0] + a_decimal;
    b = b[0] + b_decimal;
    var result = (parseInt(a,10)+parseInt(b,10)) + '';
    if (result.length < decimal_position) {
        for (var x=result.length;x<decimal_position;x++) {
            result = '0'+result;
        }
        result = '0.'+result
    }
    else {
        p = result.length-decimal_position;
        result = result.substring(0,p)+'.'+result.substring(p);
    }
    return result;
}

*注意:代码被简化了,附加功能被当作家庭作业省略了。

为了按照您想要的方式修复加法,我建议以某种方式计算每个数字中的小数位数。例如,这种方法,然后将最大值传递给toFixed,并修剪任何剩余的零。

function AddTwo(n1, n2) {
    var n3 = parseFloat(n1) + parseFloat(n2);
    var count1 = Decimals(n1, '.');
    var count2 = Decimals(n2, '.');
    var decimals = Math.max(count1, count2);
    var result = n3.toFixed(decimals)
    var resultDecimals = Decimals(result, '.');
    if (resultDecimals > 0) {
        return result.replace(/.?0*$/,'');
    }
    else {
        return result;
    }
}
// Included for reference - I didn't write this
function Decimals(x, dec_sep)
{
    var tmp=new String();
    tmp=x;
    if (tmp.indexOf(dec_sep)>-1)
        return tmp.length-tmp.indexOf(dec_sep)-1;
    else
        return 0;
} 

这是的JSFiddle

相关内容

  • 没有找到相关文章

最新更新