gpt4 book ai didi

javascript - parseFloat 返回 NaN javascript 数字

转载 作者:行者123 更新时间:2023-11-28 18:54:24 25 4
gpt4 key购买 nike

我遇到这个问题,此代码不会计算 <tr> 中的任何内容。标签。

function CashCategory()
{
$("#cashAmount"+counterCash).keydown(function () {
setTimeout(function () {
var z1=$("#cashAmount"+counterCash).val();

var sum3 = 0;
$('.priceCash').each(function() {
sum3 += parseFloat($(this).text());
});
//$('#grandTotalGold').html(sum2.toFixed(2));
$('#grandTotalCash').val(sum3.toFixed(2));
//$('#grandTotalCash').text(sum3.toFixed(2));
}, 0);

});
}

HTML 代码

<td class="priceCash">
<input type="text" id="cashAmount1" class="form-control" value="">
</td>

z1产生值(value),但是当它被计算时。当 NaN 时

最佳答案

我没有看到您在任何地方的计算中使用z1。此外,$(this).text() 应始终为空,因为 td.priceCash 内部没有任何文本。

也许你真的想这么做?

    $("#cashAmount"+counterCash).keydown(function () {
setTimeout(function () {
var sum3 = 0;
$('.priceCash').each(function(i,el) {
sum3 += parseFloat($("input",this).val());
});

关于javascript - parseFloat 返回 NaN javascript 数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33925986/

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