我可以计算表格的行数吗? $(“这个tbody tr”).length?

发布于 2024-10-09 00:58:14 字数 448 浏览 2 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

香草可樂 2024-10-16 00:58:14

这是代码

$('.table-sort').each(function(index) {
   var rowCount = $("tbody tr", this).length; //will work now..

   var rowCount1 = $(this).find('tbody > tr').length; //this is working fine
   alert(rowCount + '-' + rowCount1);
})

,但是您使用的第二个代码有效应该足够了..


您也可以使用表 DOM 对象的固有表属性

$('.table-sort').each(function(index) {
       var rowCount = this.rows.length;
    })

Here is the code

$('.table-sort').each(function(index) {
   var rowCount = $("tbody tr", this).length; //will work now..

   var rowCount1 = $(this).find('tbody > tr').length; //this is working fine
   alert(rowCount + '-' + rowCount1);
})

But the second code you use, which works, should be enough ..


You could also use the inherent table properties of the table DOM object

$('.table-sort').each(function(index) {
       var rowCount = this.rows.length;
    })
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文