Created
July 31, 2015 04:55
-
-
Save iorionda/f20f35b898b9e0744579 to your computer and use it in GitHub Desktop.
table のチェックされた行にある指定の要素の件数を合計する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ary_count = []; | |
$('.table_body :checked').parents('tr').children('td[id^=id_]').each(function() { ary_count.push(parseInt($(this).text())); }); | |
ary_count.reduce(function(prev, current, i, arr) { return prev + current }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment