TypeError: totalAmount.tofixed is not a function

TypeError: totalAmount.tofixed is not a function

我编写了一个代码,用于在总到期金额大于输入金额时触发警报。

不是tofixed。应该是:

totalAmount.toFixed(2)

尝试将您的 if 语句更改为:

if(totalDue < parseFloat(totalAmount.toFixed(2)))

您只是忘记了方法名称中的大写 F