1. 例如:0.1+0.2 写成 (0.1*10+0.2*10)/10 结果:0.3 2. 注意:type 为 number
1. 例如:var a = 0.1+0.2 写成 a.toFixed(1) 结果:"0.3" 2. a.toFixed(2) 3. 结果:"0.30" 注意:type 为 string