2014-05-25 29 views
-3

我想將數字舍入到2位小數。 我與一個例子顯示我如何將一個數字舍入到小數點後2位(強迫)在javascript中

var k =10.3; 
alert(parseFloat(k),2); // outputs 10.3 
alert(Math.round(k).toFixed(2)); // outputs 10.00 

結果我需要的是10.30 究竟是什麼解決方案。

請幫助

感謝

+1

https://www.google。 com/search?hl = en&q = +如何+ can + i + round + a + number + to + 2 + decimal + places(compelsory)+ in + javascript這已經向您展示了相當多的問題答案。 – Joeytje50

+0

看到這個http://stackoverflow.com/questions/6134039/format-number-to-always-show-2-decimal-places – Azim

回答

2

要使用定點表示法格式的數字,你可以簡單地使用toFixed方法:

(10.8).toFixed(2); // 10.80 

var num = 2.4; 
alert(num.toFixed(2)); // 2.40 
相關問題