我的最终值有一个小问题,我需要四舍五入到两位小数。
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。