2014-02-15 61 views
0

行,所以我有基本標記的各種社交媒體渠道的一些共享按鈕如下​​:獲取總數的內部元件組

<a href="[sharelink]"> 
<img src="[buttonsrc]" /> 
</a> 
<span class="share-counter"> 
[number of shares] 
</span> 

...重複5次

這可能是最好的使用jQuery做,基本上是我想要做的就是股份總額,即總所有.share櫃檯元素中舉行的數字和地方叫一個元素中,這個數字,可以說.share計

回答

0

您可以使用.each()來總結起來

var total = 0; 
$('.share-counter').each(function() { 
    total += parseInt($(this).text(), 10) 
}); 
$('.share-total').text(total) 
console.log(total)