如何使用javascript计算动态行和单元格的总和值

时间:2014-08-09 09:04:39

标签: javascript jquery

当已经显示值时工作正常,但我想在更改单元格中的值时总和值也会改变请帮助我...

$(".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;
            }); 

0 个答案:

没有答案