我有以下代码:
$.ajax({
type: "GET",
url: 'index.php?act=ajax&op=getShippingPrice&id='+shippingID,
success: function(data) {
var currentPrice = Number($("#finalPrice").html());
var newPrice = Number(currentPrice + data);
$("#finalPrice").html(newPrice);
}
});
我尝试计算新价格。但我实际上得到了一串 newPrice,其中包含当前价格,然后是来自 ajax 的数据。
如果当前价格是 1500,而来自 ajax 的数据是 10,我得到的是 150010,而不是 1510。
我也尝试使用 parseInt,可能没有正确使用它。