jQuery:选择子元素的最后一个父元素
我如何通过选择以下 HTML 中具有跨度的内容来获得 tr
的最顶层:
<table>
<tr><!-- THIS ONE -->
<td>
<table>
<tr>
<td><span></span></td>
</tr>
</table>
</td>
<td><span></span></td>
</tr>
<tr><!-- AND THIS ONE -->
<td><span></span></td>
<td><span></span></td>
</tr>
</table>
所以类似于:
$('table span').parent('tr:last')
虽然,不幸的是,这只返回一个 tr...
How would I get the top most level of tr
by selecting the ones that have spans in the following HTML:
<table>
<tr><!-- THIS ONE -->
<td>
<table>
<tr>
<td><span></span></td>
</tr>
</table>
</td>
<td><span></span></td>
</tr>
<tr><!-- AND THIS ONE -->
<td><span></span></td>
<td><span></span></td>
</tr>
</table>
So something like:
$('table span').parent('tr:last')
Though, unfortunately, that only returns a single tr...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用 :has 选择器,例如。
表#topmost > tr:有(跨度)
use the :has selector eg.
table#topmost > tr:has(span)
您的 HTML 一开始就无效。您从未真正打开
标记,您只是尝试关闭它们 (
)。
Your HTML is invalid to begin with. You never actually open a
<tr>
tag, you only try to close them (</tr>
).可能:
但这行不通,因为你格式化TR的方式是兄弟姐妹,而不是父母
所以在这种情况下......将你的HTML更改为 -
并且上面的javascript将工作。
Probably:
But that won't work because the way you have this formatted the TRs are siblings, not parents
So in that case...change your HTML to -
and the javascript above will work.
在我看来,最顶层始终位于最顶层的表中,因此您只需检查这些行
It seems to me that the top most level will always be in the topmost table, so you only have to check those rows