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

js求两个整数的百分比

时间:2018-04-13 20:39:23      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:nbsp   oat   get   round   turn   UNC   return   function   math   

  function GetPercent(num, total) {
                          num = parseFloat(num);
                          total = parseFloat(total);
                          if (isNaN(num) || isNaN(total)) {
                              return "-";
                         }
                        return total <= 0 ? "0%" : (Math.round(num / total * 100) / 100.00);
                   } 

js求两个整数的百分比

标签:nbsp   oat   get   round   turn   UNC   return   function   math   

原文地址:https://www.cnblogs.com/chenlove/p/8822682.html

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