用javascript格式化(人性化)文件字节大小表示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用javascript格式化(人性化)文件字节大小表示相关的知识,希望对你有一定的参考价值。

I use this in addition to the
number_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.
  1. function size_format (filesize) {
  2. if (filesize >= 1073741824) {
  3. filesize = number_format(filesize / 1073741824, 2, '.', '') + ' Gb';
  4. } else {
  5. if (filesize >= 1048576) {
  6. filesize = number_format(filesize / 1048576, 2, '.', '') + ' Mb';
  7. } else {
  8. if (filesize >= 1024) {
  9. filesize = number_format(filesize / 1024, 0) + ' Kb';
  10. } else {
  11. filesize = number_format(filesize, 0) + ' bytes';
  12. };
  13. };
  14. };
  15. return filesize;
  16. };

以上是关于用javascript格式化(人性化)文件字节大小表示的主要内容,如果未能解决你的问题,请参考以下文章

Linux命令Linux常用命令

linux命令

javascript 文件大小函数故障,字节在 1000 到 1024 之间

Linux查看文件大小的几种方法

使用 JavaScript 数学将字节转换为千兆字节

PHP文件大小格式化函数合集