我有一张 5 x 5 的桌子。每个单元格都是一个 asp.net 文本框。我想用非空文本框获取最后一行的 5 个文本框值。例如:
这应该得到你好,我的朋友
但是我得到了所有值,但最后一个(ND)。我不知道为什么。这是我的代码:
// RIGHT HERE, $(this) referes to the whole table
$(this).find('input[value!=""]')
// I get the last edited textbox
.last()
// Go up to the parent <td>
.parent('td')
.siblings('td')
// I get all my brothers of type input
.children(':input')
.each(function () {
alert($(this).val());
});
我做错了什么但是什么?谢谢你。