0

只想问如何查看表格最后一列每一行的值?

这是我要解决的数字。

提前致谢

4

1 回答 1

0

检查解决方案

$('#sumcomputation >tbody >tr').each(function(i,data){

$(this).children(':last-child').css('border','1px solid RED');
var val = $(this).children(':last-child');
alert($(val).children('input').val());

});

小提琴http://jsfiddle.net/CZg96/39/

于 2013-11-15T11:13:42.530 回答