当已经显示值时工作正常,但我想在更改单元格中的值时总和值也会改变请帮助我...
$(".prop_inc_table tr:not(:first,:last) td:last-child").text(function(){
var t = 0;
$(this).prevAll().each(function(){
t += parseInt( $(this).text(), 10 ) || 0;
});
return t;
});
$(".prop_inc_table tr:last td:not(:first,:nth-child(2),:last)").text(function(i){
var t = 0;
$(this).parent().prevAll().find("td:nth-child("+(i + 2)+")").each(function(){
t += parseInt( $(this).text(), 10 ) || 0;
});
return t;
});