项目中需要对返回的小数进行格式化,把零省略掉。
1.00 ---> 1
1.01 ---> 1.01
1.10 ---> 1.1
parseFloat() 函数可解析一个字符串,并返回一个浮点数。
该函数指定字符串中的首个字符是否是数字。如果是,则对字符串进行解析,直到到达数字的末端为止,然后以数字返回该数字,而不是作为字符串。
语法
parseFloat(string)
参数 | 描述 |
---|---|
string | 必需。要被解析的字符串。 |
在本例中,我们将使用 parseFloat() 来解析不同的字符串:
<script type="text/javascript"> document.write(parseFloat("10"))
document.write(parseFloat("10.00"))
document.write(parseFloat("10.33"))
document.write(parseFloat("34 45 66"))
document.write(parseFloat(" 60 "))
document.write(parseFloat("40 years"))
document.write(parseFloat("He was 40")) </script>
输出:
10
10
10.33
34
60
40
NaN