标签:math font class 形式 pow return fun size cti
function roundTo(base,precision) { var m=Math.pow(10,precision); var a=Math.round(base * m) / m; return a; }
例如:给定数字n=6.3241712,则用roundTo(n,0)得4,用roundTo(n,7)得到6.3241712
标签:math font class 形式 pow return fun size cti
原文地址:https://www.cnblogs.com/s999/p/10792702.html