如何使用 jQuery 获取 html 表的最后一个可见子表行?
我想知道如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试:
Try:
http://jsfiddle.net/ptGE2/
正如 Mathieu 链接到的。
http://jsfiddle.net/ptGE2/
As Mathieu linked to.
尝试其中之一
try one of these