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

jquery 精度计算代码,指定精确小数位

时间:2017-02-06 13:13:50      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:oat   substr   指定   replace   index   最小值   src   function   tofixed   

jquery代码:

/**
* 将标签的值格式化
* id  标签id
* min 最小值
* max 最大值
*/
function toFloat(id,min,max){
    var htmlVal = $("#"+id).html();
    var index = htmlVal.indexOf(".");
    var result = "";
    if(index > 0){
        htmlVal = htmlVal.replaceAll("0+?$","");
        var len =  htmlVal.substring(index+1).length;
        if(len > min){
                if(len > max){
                    result = Number(htmlVal).toFixed(max);
                    result = result.replaceAll("0+?$","");
                }else{
                    result = Number(htmlVal).toFixed(len);
                    result = result.replaceAll("0+?$","");
                }
        }else {
            result = Number(htmlVal).toFixed(min);
        }
    }else {
        result = Number(htmlVal).toFixed(min);
        
    }
    $("#"+id).html(result);
}

页面显示:

技术分享

jquery 精度计算代码,指定精确小数位

标签:oat   substr   指定   replace   index   最小值   src   function   tofixed   

原文地址:http://www.cnblogs.com/king-xg/p/6369797.html

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