function size(bytes) { 
    if (bytes == 0) { 
        return "0.00 B"; 
    } 
    var e = Math.floor(Math.log(bytes) / Math.log(1024)); 
    return  (bytes / Math.pow(1024, e)).toFixed(2) + 
      ' ' + ' KMGTP'.charAt(e) + 'B'; 
      
} 
分类: 暂无分类 标签: development

评论

暂无评论数据

暂无评论数据

目录