标签:code 小数 func return round mon UNC math 实例
function fix(num, N) { var base = Math.pow(10, N); return Math.round(num * base) / base; }
实例,取小数后边两位:
var yhmoney2 = fix(1.22222, 2);
标签:code 小数 func return round mon UNC math 实例
原文地址:https://www.cnblogs.com/-hao/p/9239645.html