gpt4 book ai didi

javascript - 检查 NaN 条件不起作用

转载 作者:行者123 更新时间:2023-11-30 06:59:05 24 4
gpt4 key购买 nike

在我的 Page_load 上,我使用了一个 JS 函数。默认情况下,它向我显示 NaN 所以我添加了一个检查 NaN 的条件,如下所示

var totalPaid = document.getElementById('txttotalPaid').value;
var totLandVal = 0;

totLandVal = parseInt(Expense) + parseInt(totalPaid)

if (totLandVal == 0 || totLandVal == NaN) {

document.getElementById('txtTotalLandVal').value = 0;
}
else {
document.getElementById('txtTotalLandVal').value = totLandVal;
}

但是文本框中的值仍然是 Nan

最佳答案

使用isNaN()相反,因为惊喜:

NaN == NaN  // false

关于javascript - 检查 NaN 条件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40525220/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com