最終値に小さな問題があります。小数点以下 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);