function change(limit) { var size = ""; if (limit < 0.1 * 1024) { //小于0.1KB,则转化成B size = limit.toFixed(2) + "B" } else if (limit ...
確定! 回上一頁