//Value being parsed at this point is "150.00"
var productValue = parseFloat($("#product-cost-value-value").text().replace(',', '.'));
console.log(productValue);
正在記錄的值是150
。Javascript值不顯示小數,除非它不是0.00
但是,如果我給它增加一些價值,就像這樣。值更改爲顯示我想要的兩位小數。
console.log(productValue + 0.01);
價值被記錄爲150.01
我怎麼能強迫我的價值觀,以顯示在所有的時間兩位小數?
可能重複[如何格式化JavaScript的一個浮動?](http://stackoverflow.com/questions/661562/how -to-format-a-float-in-javascript) –
[trim to 2 decimals]的可能重複(http://stackoverflow.com/questions/6525335/trim-to-2-decimals) – Phrogz