小数点后三位
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小数点后三位相关的知识,希望对你有一定的参考价值。
var myNumber:Number = 123.4597890; trace(roundDecimals(myNumber, 2)); function roundDecimals(num:Number, numDecimalPlaces:int):Number { return Math.round(num * Math.pow(10, numDecimalPlaces) ) / Math.pow(10, numDecimalPlaces); } // OUTPUT // 123.46
以上是关于小数点后三位的主要内容,如果未能解决你的问题,请参考以下文章