functionrenderSize(value){if(null==value||value==''){return"0Bytes";}varunitArr=newArray("Bytes","KB","MB","GB","TB","PB","EB","ZB","YB");varindex=0,srcsize=parseFloat(value);index=Math.floor(Math.log(srcsize)/Math.log(1024));varsize=srcsize/Math.pow(1024,index);//保留的小数位数size=size.toFixed(2);returnsize+unitArr[index];}想知道为什么这里边index=Math.floor(Math.log(srcsize)/Math.log(1024));index可以决定是什么单位?还有varsize=srcsize/Math.pow(1024,index);这句
慕标5832272
皈依舞
相关分类