This app works best with JavaScript enabled.
Blog
四舍五入保留小数
2018-04-22
Math
.
round
(
1.2345
*
100
)
/
100
;
// 1.23
Math
.
round
(
1.2345
*
1000
)
/
1000
;
// 1.235
← 坏蛋是怎样炼成的
IE条件注释 →