我正在尝试获取表单字段总和值,但相反,我[object HTMLInputElement]2552
..数字是表单字段值(未汇总)。这有什么不对?
function update() {
var sum = 0;
$("#formaa div.row").each(function(i,o){
total = parseInt($(o).find(".ki").val(), 10) * parseInt($(o).find(".ka").val(), 10);
if(!isNaN(total) && total.length!=0) {
$(o).find("[name=suma]").val(total);
suma += total;
}
});
$("#suma").val(suma);
}