Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只想问如何查看表格最后一列每一行的值?
这是我要解决的数字。
提前致谢
检查解决方案
$('#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/