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

html模板中的数字保留两位小数

时间:2016-07-21 19:50:57      阅读:2779      评论:0      收藏:0      [点我收藏+]

标签:

<script>
    //html模板中的数字保留两位小数
    function formatCurrency(num) {
        num = num.toString().replace(/\$|\,/g,‘‘);
        if(isNaN(num))
            num = "0";
        sign = (num == (num = Math.abs(num)));
        num = Math.floor(num*100+0.50000000001);
        cents = num%100;
        num = Math.floor(num/100).toString();
        if(cents<10)
            cents = "0" + cents;
        for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
            num = num.substring(0,num.length-(4*i+3))+‘,‘+
                    num.substring(num.length-(4*i+3));
        return (((sign)?‘‘:‘-‘) + num + ‘.‘ + cents);
    }
</script>

 

html模板中的数字保留两位小数

标签:

原文地址:http://www.cnblogs.com/719907411hl/p/5692690.html

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