gpt4 book ai didi

jquery - 如果只有 1 行,如何隐藏整个表格

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

我有下面的示例表,有时它有内容,但有时没有。

如何使用 jquery,以便在没有 td(或者只有 1 行 tr)的情况下隐藏整个表?

example 1:
<table>
<tr><th>some title</th></tr>
</table>

example 2:
<table>
<tr><th>some title</th></tr>
<tr><td>some content</td></tr>
</table>

我尝试过,但似乎不起作用。

$('table').each(function() {
if ($(this).find('td:empty').length) $(this).remove();
});​

最佳答案

更改为:

js

$('table').each(function() {
if($(this).find('tr').children("td").length < 1) {
$(this).hide();
}
});

fiddle

你想隐藏你的 table 吗?如果是,我建议使用 hide() 因为 remove(),从 DOM 中删除元素。

关于jquery - 如果只有 1 行,如何隐藏整个表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24397514/

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