14

我想将整数转换为精度为 2 的浮点数。即。-

11 => 11.00

45 => 45.00

请帮我。

谢谢你。

4

4 回答 4

36

使用.toFixed

var num = 45;
num.toFixed(2); //"45.00"
于 2012-07-27T09:45:48.123 回答
3
var num = 10;
var result = num.toFixed(2);

http://www.mredkj.com/javascript/nfbasic2.html

于 2012-07-27T09:48:49.957 回答
1

这是一个很常见的问题我看到有人已经回答了,我想补充一下,如果你想进一步使用转换后的数字进行计算试试这个在控制台

a = 10.2222;
typeof a /*"number"*/
a /*10.2222*/

b = parseFloat(b).toFixed(2);
typeof b /*"String"*/
b /*"10.22"*/

c = parseFloat(c)
typeof c /*"number"*/
c /*10.22*/

解释是——

toFixed() method outputs a string variable
but if you want to further use the value of b as a 'number'
you will have to, 
c = parseFloat(b)
typeof c
// "number"
于 2019-02-13T15:14:05.507 回答
0

只需在toFixed(2)此处添加您的变量。

于 2018-11-11T06:19:37.260 回答