用javascript格式化(人性化)文件字节大小表示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用javascript格式化(人性化)文件字节大小表示相关的知识,希望对你有一定的参考价值。
I use this in addition to thenumber_format (http://snipplr.com/view/5945/javascript-numberformat--ported-from-php/)
snippit in SWFUpload to display the size of files a user is preparing to upload.
function size_format (filesize) { if (filesize >= 1073741824) { filesize = number_format(filesize / 1073741824, 2, '.', '') + ' Gb'; } else { if (filesize >= 1048576) { filesize = number_format(filesize / 1048576, 2, '.', '') + ' Mb'; } else { if (filesize >= 1024) { filesize = number_format(filesize / 1024, 0) + ' Kb'; } else { filesize = number_format(filesize, 0) + ' bytes'; }; }; }; return filesize; };
以上是关于用javascript格式化(人性化)文件字节大小表示的主要内容,如果未能解决你的问题,请参考以下文章