js中只有对整数四舍五入的函数,想要精确到小数点后面的位数,则只能自己写了。
function roundNum(num,length) { return Math.round(num*Math.pow(10,length))/Math.pow(10,length); }
Math.pow(x,y)是计算x的y次方。
还有如下函数说明一下
Math.ceil求最小的整数但不...
js中只有对整数四舍五入的函数,想要精确到小数点后面的位数,则只能自己写了。
function roundNum(num,length) { return Math.round(num*Math.pow(10,length))/Math.pow(10,length); }
Math.pow(x,y)是计算x的y次方。
还有如下函数说明一下
Math.ceil求最小的整数但不...