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

时间:2016-07-21 19:50:57   收藏:0   阅读:2779
<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>

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!