//四舍五入方法
var round = function(floatNum) {
if (isNaN(floatNum)) return 0.00;
return Math.round(Math.floor(floatNum * 1000) / 10) / 100;
};
//四舍五入方法
var round = function(floatNum) {
if (isNaN(floatNum)) return 0.00;
return Math.round(Math.floor(floatNum * 1000) / 10) / 100;
};
8981

被折叠的 条评论
为什么被折叠?