如何使用 jQuery 获取 html 表的最后一个可见子表行?

发布于 2024-12-12 12:01:07 字数 647 浏览 0 评论 0原文

我想知道如何使用 jQuery 获取 HTML 表的最后一个可见子项?我问的原因是,我无法使用 CSS 3 来获取最后一个子元素,因为较旧的浏览器不支持它,而且这是我正在从事的遗留项目。

我有一个这样的表结构:

<table id="table">
    <tr>
        <td>Some name</td>
    </tr>
    <tr>
        <td>Some name</td>
    </tr>
    <tr style="display:none;">
        <td>Some name</td>
    </tr>
</table>

最后一个表行不可见,当单击数据旁边的加号时会显示它,但它不相关。我想了解如何使用 jQuery 选择器获取最后一个可见的表格行。

目前我正在使用

$last = $('#table').find('tbody tr:last-child');
$last.addClass('last-child');

但它实际上返回隐藏的表行。

先感谢您

I want to know how to get the last visible child of an HTML table using jQuery? The reason I ask is, I cannot use CSS 3 to get the last child because older browsers do not support it and this is kind of a legacy projects I am working on.

I have a table structure like this:

<table id="table">
    <tr>
        <td>Some name</td>
    </tr>
    <tr>
        <td>Some name</td>
    </tr>
    <tr style="display:none;">
        <td>Some name</td>
    </tr>
</table>

The last table row is not visible and it gets shown when clicking on a plus sign next to the data but it is not relevant. I want to find out how to get the last visible table row using jQuery selectors.

Currently I am using

$last = $('#table').find('tbody tr:last-child');
$last.addClass('last-child');

But its actually returning the hidden table row.

Thank you in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

我还不会笑 2024-12-19 12:01:07

尝试:

$('tr:visible:last','#table')

Try:

$('tr:visible:last','#table')
暗喜 2024-12-19 12:01:07
$last = $('tbody tr:visible').last();
$last = $('tbody tr:visible').last();
二智少女猫性小仙女 2024-12-19 12:01:07
$last = $('#table').find('tbody tr:visible:last');
$last.addClass('last-child');

http://jsfiddle.net/ptGE2/

正如 Mathieu 链接到的。

$last = $('#table').find('tbody tr:visible:last');
$last.addClass('last-child');

http://jsfiddle.net/ptGE2/

As Mathieu linked to.

山色无中 2024-12-19 12:01:07

尝试其中之一

$last = $('#table').find('tbody tr:visible:last-child');

or

$last = $('#table').find('tbody tr:visible').is(':last-child');

try one of these

$last = $('#table').find('tbody tr:visible:last-child');

or

$last = $('#table').find('tbody tr:visible').is(':last-child');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文