gpt4 book ai didi

javascript - 类标签中所有值的总和

转载 作者:行者123 更新时间:2023-11-29 19:43:42 26 4
gpt4 key购买 nike

我现在想要总计计算。我想要“金额”字段中所有值的总和……我尝试了这个代码,但它不起作用……

$(".amt").each(function(){
total=total+(parseInt($(this).val()))
});

enter image description here

最佳答案

根据以下 HTML:

<table>
<tr>
<td><input class="amt" /></td>
</tr>
<tr>
<td><input class="amt" /></td>
</tr>
</table>
<div id="total"></div>

JS 将是:

$('table').focusout(function() {
var sum = 0;
$('.amt').each(function(){
if (this.value != "") {
sum += parseFloat(this.value);
}
});
$('#total').html("Grand total: " + sum);
});

JsFiddle

关于javascript - 类标签中所有值的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21454141/

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