我有一个触发 onchange 的 JavaScript 函数。它的作用是从输入字段中获取值,然后将其添加到在另一个字段中输入的值中,然后在另一个字段中显示答案。
它第一次工作正常,但是当我输入一个新值并离开该字段时出现错误:TotalPurchasePrice is not a function
function TotalPurchasePrice(BuyinPrice, TopupAmount) {
var BuyinPrice
var TopupAmount
BuyinPrice = BuyinPrice.toString().replace(/\£|\,/g, '');
TopupAmount = TopupAmount.toString().replace(/\£|\,/g, '');
TotalPurchasePrice = (BuyinPrice * 1) + (TopupAmount * 1);
document.getElementById('tTotalPurchasePrice').value = TotalPurchasePrice;
}
谁能告诉我为什么这只会工作一次?