var d26=237500000;
alert(Math.round((d26*0.5)*0.95,-5));
此输出 112812500 。但我需要输出 112800000 。 最后5个数字将为0(零)。
在excel中,这种情况正在发生。不是在javascript。
答案 0 :(得分:1)
var d26=237500000;
alert(Math.round(((d26*0.5)*0.95)/100000)*100000);
答案 1 :(得分:0)
不确定有什么问题,但我建议以这种方式解决:
var d26=237500000;
d26 = d26 /100000;
d26 = Math.round((d26*0.5)*0.95);
alert(d26 = d26 *100000);
答案 2 :(得分:0)
代码来源:https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math/round
// Closure
(function() {
/**
* Decimal adjustment of a number.
*
* @param {String} type The type of adjustment.
* @param {Number} value The number.
* @param {Integer} exp The exponent (the 10 logarithm of the adjustment base).
* @returns {Number} The adjusted value.
*/
function decimalAdjust(type, value, exp) {
// If the exp is undefined or zero...
if (typeof exp === 'undefined' || +exp === 0) {
return Math[type](value);
}
value = +value;
exp = +exp;
// If the value is not a number or the exp is not an integer...
if (isNaN(value) || !(typeof exp === 'number' && exp % 1 === 0)) {
return NaN;
}
// If the value is negative...
if (value < 0) {
return -decimalAdjust(type, -value, exp);
}
// Shift
value = value.toString().split('e');
value = Math[type](+(value[0] + 'e' + (value[1] ? (+value[1] - exp) : -exp)));
// Shift back
value = value.toString().split('e');
return +(value[0] + 'e' + (value[1] ? (+value[1] + exp) : exp));
}
// Decimal round
if (!Math.round10) {
Math.round10 = function(value, exp) {
return decimalAdjust('round', value, exp);
};
}
// Decimal floor
if (!Math.floor10) {
Math.floor10 = function(value, exp) {
return decimalAdjust('floor', value, exp);
};
}
// Decimal ceil
if (!Math.ceil10) {
Math.ceil10 = function(value, exp) {
return decimalAdjust('ceil', value, exp);
};
}
})();
然后你可以使用
Math.round10((d26*0.5)*0.95,5)