1 function roundFixed(num, fixed) { 2 var pos = num.toString().indexOf('.'), 3 decimal_places = num.toString().length - pos - 1, 4 _int = num * Math.pow(10, decimal_places), 5 divisor_1 = Math.pow(10, decimal_places - fixed), 6 divisor_2 = Math.pow(10, fixed); 7 return Math.round(_int / divisor_1) / divisor_2; 8 } 9 10 console.log(roundFixed(3.135,2));//-> 3.14 11 console.log(roundFixed(2.135,2));//-> 2.14 12 console.log(roundFixed(0.955,1));//-> 1 13 console.log(roundFixed(0.955,2));//-> 0.96 14 console.log(roundFixed(1.955,2));//-> 1.96 15 console.log(roundFixed(1.955,1));//-> 2
参考:http://bbs.csdn.net/topics/391957876 perhapschen的回答
转载于:https://www.cnblogs.com/frankwin608/p/6925937.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/36925.html