我想将整数转换为精度为 2 的浮点数。即。-
11 => 11.00
45 => 45.00
请帮我。
谢谢你。
使用.toFixed
:
var num = 45;
num.toFixed(2); //"45.00"
var num = 10;
var result = num.toFixed(2);
这是一个很常见的问题我看到有人已经回答了,我想补充一下,如果你想进一步使用转换后的数字进行计算试试这个在控制台
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"
只需在toFixed(2)
此处添加您的变量。