js byte轉KB,MB,GB,TB代碼

 //byte 轉bkmgt
              byteconvert:function (bytes){
                var i = 0;
                var KBRule=1024;
                var j = "BKMGT";
                while (bytes>KBRule) {
                         bytes=bytes/KBRule;
                         i++;
                } 
                return bytes.toFixed(1) + j.charAt(i);
            }io

相關文章
相關標籤/搜索