我希望子总值为toFixed(2),这样子总输入将显示“864.91”而不是“864.9100000000001”。
另外,我有两个小于总数的输入,名为GST
和total_price
。
基本上,GST应取总小值并乘以(5/100)并将其显示在GST输入值中。
总价格应采用GST值和小计价值,将它们加在一起,并在total_price
输入值中显示数字。
这是我到目前为止的代码:
function selectProduct(sel) {
var end = sel.value;
var typeId = sel.id;
$.ajax({ //create an ajax request to load_page.php
type: "GET",
url: "ajax_all.php?from=pos_product&name="+end,
dataType: "html", //expect html to be returned
success: function(response){
var sub_total = $("#sub-total").val();
$("#sub-total").val(+sub_total + +response);
}
});
}
感谢您的帮助,非常感谢所有帮助。