码迷,mamicode.com
首页 > 其他好文 > 详细

avascript实现保留两位小数一位自动补零。

时间:2018-06-12 18:34:58      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:bsp   rip   indexof   nbsp   保留   round   tostring   [1]   alert   

function returnFloat(value) {

           var value = Math.round(parseFloat(value) * 100) / 100;
           var xsd = value.toString().split(".");
           if (xsd.length == 1) {
               value = value.toString() + ".00";
               return value;
           }
           if (xsd.length > 1) {
               if (xsd[1].length < 2) {
                   value = value.toString() + "0";
               }
               return value;
           }
       }

    示例2:

<script> 
 tmp = "1234567.57232"
 result = tmp.substr(0,tmp.indexOf(".")+3); 
 alert(result); 
 </script> 

  

avascript实现保留两位小数一位自动补零。

标签:bsp   rip   indexof   nbsp   保留   round   tostring   [1]   alert   

原文地址:https://www.cnblogs.com/armyin/p/9174418.html

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