jquery – 来自不同div的值与相同类的总和

前端之家收集整理的这篇文章主要介绍了jquery – 来自不同div的值与相同类的总和前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在加载具有.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.

原文链接:https://www.f2er.com/jquery/179740.html

猜你在找的jQuery相关文章