document.write(0.1+0.2) 结果等于 0.30000000000000004 如果只需要保留一位小数 document.write((0.1+0.2).toFixed(1)) 结果等于 0.3