我有大约 50 行数据。许多行的 css 属性设置为 default:none。
我只想添加显示不是无的行的数据。jquery 中有什么东西吗?
我的JsFiddle
目前我正在计算它并且都错了
$(document).ready(function () {
$(".sum").click(function() {
var total = 0;
$(this).closest('tr').hide();
$('table tr td:nth-of-type(1)').each(function() {
total += parseFloat($('table tr td:nth-of-type(1)').text()) || 0;
$('.sum').text(" "+total);
});
});
});