假设我有15.07567为了完成它我做了:
price = Math.round(15.07567 * 100) / 100;
//我得到15.08
但如果我们的数字以0结尾(例15.10)并且我们想要两位小数,则会出现问题。
price = Math.round(15.10 * 100) / 100;
// 15.1
嗯,所以我尝试使用toFixed()
price = Math.round(15.10 * 100) / 100;
total = price.toFixed(2);
//我得到" 15.10",这很好,但它会返回一个字符串,这可能会在以后出现问题,所以我试着解决这个问题:
price = Math.round(15.10 * 100) / 100;
total = price.toFixed(2);
Number(total) //or parseFloat(total)
//我得到15.1并绕圈子走了?
答案 0 :(得分:1)
正如乔丹所说。当JavaScript显示数字时,它将丢弃0.我只是按原样存储该值,当您显示它时,通过.toFixed(2)运行它以使其正确显示。或者甚至更好,找一个货币格式化程序,因为这似乎是你想要在视图一侧显示和使用它。
这是一个很好的货币格式化脚本。
Number.prototype.formatMoney = function(c, d='.', t=','){
var n = this,
c = isNaN(c = Math.abs(c)) ? 2 : c,
d = d == undefined ? "." : d,
t = t == undefined ? "," : t,
s = n < 0 ? "-" : "",
i = parseInt(n = Math.abs(+n || 0).toFixed(c)) + "",
j = (j = i.length) > 3 ? j % 3 : 0;
return s + (j ? i.substr(0, j) + t : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : "");
};
然后您可以使用以下代码将其用作面向对象的方式:
price.formatMoney(2);
或者,如果要为欧洲指定千位和小数分隔符。
price.formatMoney(2, ',', '.');
答案 1 :(得分:0)
如果要在右侧显示0
,则需要在字符串中表示数字...
答案 2 :(得分:0)
始终保持您的号码,当您显示它们时,将它们运行到固定以获得所需的显示格式,这样您就可以使用字符串格式的就绪值。由于该方法是必需的,因此设计用于显示目的,因此该函数返回一个就绪字符串而不是数字。