$(this).closest('table').find('.total1').val(($(this).closest('table').find('.total').val() * price) / $(this).closest('table').find('.inrvalue').val());
我如何将total1值四舍五入为3位小数?
答案 0 :(得分:1)
Number.toFixed(n)的
这是原生JS,不需要特定的JQuery功能。
var value = 10.123456.toFixed(3);
// value = 10.123
答案 1 :(得分:0)
您可以将total1值分配到不同的变量中,并按照这样做;
var total1= 4.34597;
var total1Rounded= Math.round(total1* 1000) / 1000;