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