admin管理员组文章数量:1344322
I'm doing this:
var refundAmount = parseFloat($('#refundAmount2').val().replace('$',''));
var refundReceived = $('#refundReceived');
var remainderAmount = refundAmount-parseFloat(refundReceived.val().replace('$',''));
alert(parseInt(remainderAmount).toFixed(2));
No matter what I do, the result always ends with 2 decimal places being '.00'. So if the first number is 200.12 and the second is 100.08, it should be alerting me with 100.04 but instead I get 100.00.
Why might this be happening?
I'm doing this:
var refundAmount = parseFloat($('#refundAmount2').val().replace('$',''));
var refundReceived = $('#refundReceived');
var remainderAmount = refundAmount-parseFloat(refundReceived.val().replace('$',''));
alert(parseInt(remainderAmount).toFixed(2));
No matter what I do, the result always ends with 2 decimal places being '.00'. So if the first number is 200.12 and the second is 100.08, it should be alerting me with 100.04 but instead I get 100.00.
Why might this be happening?
Share Improve this question edited Oct 1, 2021 at 20:40 halfer 20.4k19 gold badges109 silver badges202 bronze badges asked Apr 17, 2013 at 15:36 DamienDamien 4,31910 gold badges41 silver badges54 bronze badges 1-
2
parseInt(remainderAmount)
converts the number to an integer and thentoFixed(2)
appends.00
to it. It might be undesired but it's the predictable result. I think you wantalert(parseFloat(remainderAmount.toFixed(2)));
– Ejaz Commented Apr 17, 2013 at 15:39
2 Answers
Reset to default 7You used parseInt
to convert that number to an integer and then used toFixed(2)
to convert it to a number with 2 decimal places. Adding 2 decimal places to an integer will always result in .00
.
Try
alert(remainderAmount.toFixed(2));
See DEMO.
You're getting it as an int with parseInt(), then doing the toFixed(). So you're putting decimal places on an int.
本文标签: parsefloatUsing toFixed(2) in JavaScript is producing undesired resultsStack Overflow
版权声明:本文标题:parsefloat - Using toFixed(2) in JavaScript is producing undesired results - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743777998a2537334.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论