码迷,mamicode.com
首页 > Web开发 > 详细

前端用js写一个函数实现KB、MB、GB、TB单位转换

时间:2019-07-17 20:23:58      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:doctype   size   body   math   实现   str   bsp   int   git   

  • 需求:用js写一个函数实现KB、MB、GB、TB单位转换
  • 实现思路:
    • 当函数参数值小于等于1000时,参数除以1000,即可得到最小单位kb,赋值给变量_integer;当_integer值大于1000时,kb值除以1000,即可得到mb,赋值给变量_integer;以此类推。
    • 将单位保存在数组中, 将转换后的值与单位进行拼接即可得到转换后的单位。
  • 代码展示:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>转换数字单位KB、MB、GB、TB</title>
</head>
<body>
<script type="text/javascript">
    const formatFileSize = size => {
      const scale = 1000
      const digitList = [KB, MB, GB, TB]
      let _integer = size/scale //最小单位kb
      let digit = 0
      while(_integer > scale) {
        _integer = Math.round(_integer/scale)
        digit++
      }
      return `${_integer}${digitList[digit]}`
    }
    document.write(formatFileSize(2003));
</script>
</body>
</html>

 

前端用js写一个函数实现KB、MB、GB、TB单位转换

标签:doctype   size   body   math   实现   str   bsp   int   git   

原文地址:https://www.cnblogs.com/caoxueying2018/p/11203339.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!