你需要保留几位小数
改成
this.value.toFixed(2)
保留2为小数
=========
就是把框出来的两个地方,
this.value改成this.value.toFixed(2)
就可以了
===========
效果
那你就在SQL上乘100后保留两位小数,JS中不乘
https://www.cnblogs.com/xinggood/p/6639022.html
浮点型计算精度问题,看下这个帖子参考一下
(this.value*100).toFixed(2) + '%'
先乘上100在fixed