gpt4 book ai didi

jQuery 如果 td 为空则隐藏 block

转载 作者:行者123 更新时间:2023-12-01 06:47:50 24 4
gpt4 key购买 nike

如果 td 为空(没有 adiv's),我需要隐藏表格。

对不起大家,是我的错

有内容就没有什么可隐藏的不需要但如果 td 为空 - 需要隐藏表格

<table class="klist-actions">
<tr>
<td class="klist-actions-goto">
<a name="forumbottom"></a>
</td>
<td class="klist-actions-forum">
<div class="kmessage-buttons-row">
<a class="kicon-button kbuttoncomm btn-left" href="#"></a>
</div>
</td>

<td class="klist-pages-all">
</td>
</tr>
</table>

最佳答案

如果任何 td 元素为空,此代码将隐藏表格:

//select all td elements, iterate through them and check the length of their content
$(".klist-actions td").each(function(i,e){
if(!$.trim(e.innerHTML).length){
$(e).parents("table").hide();
}
});

JS fiddle : http://jsfiddle.net/XJd8t/7/

关于jQuery 如果 td 为空则隐藏 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20910266/

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