jQuery 表计数行始终返回值 1
由于某种原因,每次我尝试计算表中的行数时 它总是返回 1。我正在动态添加和删除行 表,所以我开始认为它只是计算行数 最初在表中配置。这是我正在使用的代码。
$(".elementDelRowButton").live ('click', function (event) {
console.log ($(this).closest('table').length);
if ($(this).closest('tr').index()!=0) {
$(this).parent().parent().remove();
}
});
我尝试过使用大小、长度和其他变量,它总是返回 1。
这是 HTML:
<table id="element_items"><tr>
<td><input type="radio" name="radio" /></td>
<td><input type="text" value="RadioItem"/></td>
<td><span class="elementAddRowButton">+</span>/<span class="elementDelRowButton">-</span></td>
</tr>
</table>
For some reason every time I try to count the number of rows in a table
it always returns 1. I am dynamically adding and removing rows to the
table, so I'm starting to think it is just counting the number of rows
initially configured in the table. here is the code I'm using.
$(".elementDelRowButton").live ('click', function (event) {
console.log ($(this).closest('table').length);
if ($(this).closest('tr').index()!=0) {
$(this).parent().parent().remove();
}
});
I have tried using Size, length and other variations, it always returns 1.
Here is the HTML:
<table id="element_items"><tr>
<td><input type="radio" name="radio" /></td>
<td><input type="text" value="RadioItem"/></td>
<td><span class="elementAddRowButton">+</span>/<span class="elementDelRowButton">-</span></td>
</tr>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的源中可能有一个 tbody 围绕您的所有行。试试这个:
顺便说一下,“this.parent().parent().remove()”看起来很危险。您可能希望将选择器与“最接近”函数一起使用。
It could be that there's a tbody in your source surrounding all of your rows. Try this:
By the way, the "this.parent().parent().remove()" looks dangerous. You may want to use a selector along with the "closest" function.
console.log($(this).closest('table').length);只需返回一个包含最接近标签“table”的jquery集...该集确实包含一个元素,即表本身,因为最接近返回与
console.log匹配的第一个父元素($(this).closest('table') .children("tr").length 应该给出行数
console.log ($(this).closest('table').length); just return a jquery set that contains the closest tag "table" ... The set contains one element indeeed , the table itself, as closest return the first parent that match
console.log ($(this).closest('table').children("tr").length should gives the rows count
谢谢大家..这适合我的情况:
console.log ($(this).closest('table').find('tr').length);
Thanks everyone.. this worked for my situation:
console.log ($(this).closest('table').find('tr').length);