gpt4 book ai didi

javascript - 隐藏表格的第二行和第三行

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:23 26 4
gpt4 key购买 nike

<div class="NewsResultsList">   
<table>
<tr>
<td>
Results:<br/>
First<br/>
Second
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>No Results</td>
</tr>
</table>
</div>

我需要隐藏第二行和第三行。

$('div.NewsResultsList table tr:eq(1)').hide(); 
$('div.NewsResultsList table tr:eq(2)').hide();

那不是吗?怎么了?

最佳答案

这里有几种方法可以做到这一点:

jsBin demo

$('.NewsResultList tr:gt(0)').hide();

$('.NewsResultList tr').slice(-2).hide();

$('.NewsResultList tr').not(':eq(0)').hide();

$('.NewsResultList tr td:contains("No")').parent('tr').hide();

$('.NewsResultList tr').not(':first').hide();

$('.NewsResultList tr').eq(-1).hide().end().eq(-2).hide();

$('.NewsResultList tr:last').prev().andSelf().hide();

关于javascript - 隐藏表格的第二行和第三行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10047282/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com