js实现的数字四舍五入效果代码实例:
下面直接给出能够截取指定位数字符串,且具有四舍五入效果的代码:
var num=3.1415926; console.log(num.toFixed(3));
toFixed()函数可以参阅javascript的Number对象的toFixed()方法一章节。
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=11973
更多内容可以参阅:http://www.softwhy.com/javascript/
时间: 2024-10-05 22:42:13