javascript Round Function
Posted sipher
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Round Function相关的知识,希望对你有一定的参考价值。
var rounded = Math.round( number * 10 ) / 10; // round to one digit var rounded = Math.round( number * 100 ) / 100; // round to two digit function round(value, precision) var multiplier = Math.pow(10, precision || 0); return Math.round(value * multiplier) / multiplier; var fixed = rounded.toFixed(1); // round to one digit var fixed = rounded.toFixed(2); // round to two digit
以上是关于javascript Round Function的主要内容,如果未能解决你的问题,请参考以下文章
如何使用jQuery Round Corner插件制作圆角?