原文地址http://blog.csdn.net/he20101020/article/details/8503308 <script type="text/javascript"> //保留两位小数 //功能:将浮点数四舍五入,取小数点后2位 function toDecimal(x) { var f = parseFloat(x); if (isNaN(f
前言 为了获得一堆apk的大小,并与人类友好方式显示.本来是打算用以下方法,到时不能具体到保留两位小数. org.apache.commons.io.FileUtils.byteCountToDisplaySize(f.length()); Returns a human-readable version of the file size, where the input represents a specific number of bytes. If the size is over 1GB
js保留两位小数四舍五入: (Math.floor(until_price*100)/100).toFixed(2);//会四舍五入 保留两位小数 且不四舍五入(三种方式,请用最后一种): var num="2.999999999"; num = Number(num); num*=100; num = (Math.floor(num)/100).toFixed(2); alert(num); var a = "2.999999999"; a = a-0; a*
/* * @descript: 保留两位小数,如果小数点大于两位小数,就向上取值保留两位小数<br/> * @time 2016-07-13 */function mathCeil(number){ var result = Number(number); text = result.toString(); var pointIndex = text.indexOf("."); if(pointIndex != -1){ var poi