我有以下JavaScript语法:
var discount = Math.round(100 - (price / listprice) * 100);
这是整数。我如何返回两个小数点后的结果?
我有以下JavaScript语法:
var discount = Math.round(100 - (price / listprice) * 100);
这是整数。我如何返回两个小数点后的结果?
当前回答
最快的方式-比toFixed()快:
两位小数
x = .123456
result = Math.round(x * 100) / 100 // result .12
三位小数
x = .123456
result = Math.round(x * 1000) / 1000 // result .123
其他回答
如果使用一元加号将字符串转换为MDN上记录的数字。
例如:+ discount.toFixed (2)
对公认答案的一个小变化。 toFixed(2)返回一个字符串,你将总是得到两个小数点后的位置。这些可能是零。如果你想压制最后的0 (s),简单地这样做:
var discount = + ((price / listprice).toFixed(2));
编辑: 我刚刚在Firefox 35.0.1中发现了一个错误,这意味着上面可能会给NaN一些值。 我把代码改成了
var discount = Math.round(price / listprice * 100) / 100;
这给出了一个小数点后最多两位的数字。如果你想要3个,你可以乘除1000,以此类推。 OP总是需要两个小数点后的位置,但是如果toFixed()在Firefox中被破坏了,它首先需要修复。 参见https://bugzilla.mozilla.org/show_bug.cgi?id=1134388
说明—如果3位精度很重要,请参见编辑4
var discount = (price / listprice).toFixed(2);
固定将四舍五入为您取决于值超过2个小数。
例如:http://jsfiddle.net/calder12/tv9HY/
文档:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed
编辑-正如其他人提到的,这将结果转换为字符串。为了避免这种情况:
var discount = +((price / listprice).toFixed(2));
编辑2-正如评论中提到的,这个函数在某些精度上失败了,例如在1.005的情况下,它将返回1.00而不是1.01。如果这种程度的准确性很重要,我找到了这个答案:https://stackoverflow.com/a/32605063/1726511这似乎与我尝试过的所有测试都很好。
不过需要做一个小小的修改,上面链接的答案中的函数在四舍五入为1时返回整数,例如99.004将返回99而不是99.00,这并不适合显示价格。
编辑3 -似乎有固定的实际回报仍然搞砸了一些数字,这最后的编辑似乎工作。天啊,这么多重做!
var discount = roundTo((price / listprice), 2);
function roundTo(n, digits) {
if (digits === undefined) {
digits = 0;
}
var multiplicator = Math.pow(10, digits);
n = parseFloat((n * multiplicator).toFixed(11));
var test =(Math.round(n) / multiplicator);
return +(test.toFixed(digits));
}
参见小提琴的例子:https://jsfiddle.net/calder12/3Lbhfy5s/
编辑4 -你们真是要了我的命。Edit 3在负数上失败了,没有深入研究为什么在进行舍入之前将负数变为正数,然后在返回结果之前将负数转回去更容易处理。
function roundTo(n, digits) {
var negative = false;
if (digits === undefined) {
digits = 0;
}
if (n < 0) {
negative = true;
n = n * -1;
}
var multiplicator = Math.pow(10, digits);
n = parseFloat((n * multiplicator).toFixed(11));
n = (Math.round(n) / multiplicator).toFixed(digits);
if (negative) {
n = (n * -1).toFixed(digits);
}
return n;
}
小提琴:https://jsfiddle.net/3Lbhfy5s/79/
我找到的最好最简单的解决办法是
function round(value, decimals) {
return Number(Math.round(value+'e'+decimals)+'e-'+decimals);
}
round(1.005, 2); // 1.01
要处理四舍五入到任何小数点后数位的问题,包含2行代码的函数就足以满足大多数需求。下面是一些示例代码。
var testNum = 134.9567654;
var decPl = 2;
var testRes = roundDec(testNum,decPl);
alert (testNum + ' rounded to ' + decPl + ' decimal places is ' + testRes);
function roundDec(nbr,dec_places){
var mult = Math.pow(10,dec_places);
return Math.round(nbr * mult) / mult;
}