我可以计算表格的行数吗? $(“这个tbody tr”).length?
我有 3 个具有相同类名 table-sort
的表。我想通过 .each()
访问这些表并计算 tbody
内的 tr
。
是$("this tbody tr").length
吗?
$('.table-sort').each(function(index) {
var rowCount = $("this tbody tr").length; //not work , Could you please correct this?
var rowCount1 = $(this).find('tbody > tr').length; //this is working fine
alert(rowCount + '-' + rowCount1);
})
I have 3 tables with same class name table-sort
. I would like to access those table by .each()
and count the tr
inside the tbody
.
is it $("this tbody tr").length
?
$('.table-sort').each(function(index) {
var rowCount = $("this tbody tr").length; //not work , Could you please correct this?
var rowCount1 = $(this).find('tbody > tr').length; //this is working fine
alert(rowCount + '-' + rowCount1);
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是代码
,但是您使用的第二个代码有效应该足够了..
您也可以使用表 DOM 对象的固有表属性
Here is the code
But the second code you use, which works, should be enough ..
You could also use the inherent table properties of the table DOM object