//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