gpt4 book ai didi

jquery - 使用 jquery 隐藏与空行相关的行

转载 作者:行者123 更新时间:2023-12-01 03:25:43 25 4
gpt4 key购买 nike

我有一个用于显示帖子的表结构,如下所示:

<table>
<tr><td>heading of the post</td></tr>
<tr><td>body of the post</td></tr>
</table>

如果正文内容恰好为空,我想隐藏这两行。

如何使用 jquery 实现此目的?

忘记提及正文包含如果未正确加载就会被删除的图像 $("img").error(function(){ $(this).remove(); }); 但当我检查源代码时,html 仍然存在,所以也许它没有被视为空

最佳答案

有多种方法可以做到这一点。

$('td').each(function() {
if($(this).html()=='') {
$(this).parent().hide()
}
})

获取上一行:

   $(this).parent().prev().hide()

关于jquery - 使用 jquery 隐藏与空行相关的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5465875/

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