jquery – 圆值到2位小数javascript

前端之家收集整理的这篇文章主要介绍了jquery – 圆值到2位小数javascript前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的最终值有一个小问题,我需要舍入到2位小数.
var pri='#price'+$(this).attr('id').substr(len-2);
            $.get("sale/price?output=json",{ code: v },function(data){
                 $(pri).val(Math.round((data / 1.19),2));
            });
        });

任何帮助表示赞赏.

解决方案:$(pri).val(Math.round((data / 1.19 * 100))/ 100);

解决方法

只需将数字乘以100,即可将结果数除以100.
原文链接:https://www.f2er.com/jquery/181517.html

猜你在找的jQuery相关文章