js转化 保留2位小数

    //转换小数点格式为float 保留2位xiaoshu     function changeTwoDecimal_f(x) {

        var f_x = parseFloat(x);

        if (isNaN(f_x)) {

            alert('function:changeTwoDecimal->parameter error');

            return false;

        }

        var f_x = Math.round(x * 100) / 100;

        var s_x = f_x.toString();

        var pos_decimal = s_x.indexOf('.');

        if (pos_decimal < 0) {

            pos_decimal = s_x.length;

            s_x += '.';

        }

        while (s_x.length <= pos_decimal + 2) {

            s_x += '0';

        }

        return s_x;

    }    

posted @ 2014-08-13 16:02  命若天地,就逆天而行  阅读(519)  评论(0编辑  收藏  举报