gpt4 book ai didi

jquery - 来自同一类的不同 div 的值的总和

转载 作者:行者123 更新时间:2023-12-03 21:30:18 25 4
gpt4 key购买 nike

我正在动态加载具有 .totalprice 类的 div。最后,我想对所有 .totalprice 的值进行求和。

最佳答案

对于<div>元素:

var sum = 0;
$('.totalprice').each(function(){
sum += parseFloat($(this).text()); // Or this.innerHTML, this.innerText
});

您可以看到working example of this here

对于<input>元素(输入、复选框等):

var sum = 0;
$('.totalprice').each(function(){
sum += parseFloat(this.value);
});

或者,如果您要查找整数,则可以使用 parseInt() 功能。

您可以see a working example of this here .

关于jquery - 来自同一类的不同 div 的值的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7249757/

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