如果 div 中不包含表格,如何隐藏它

发布于 2024-12-22 07:12:49 字数 499 浏览 1 评论 0原文

我有一个像这样的 div

<div class="EventsRollup">
    <span class="EventsRollupTitle">Health Lecture Events</span>
    <!--this is where a table would be dynamically inserted by sharepoint 
        based on some filter, if filter is true, a tabel will get in there, 
        else not-->
</div>

使用 jQuery,如果没有插入 table,如何隐藏整个 div 因为 div< /code> 有背景色,空背景色显示没有 table 内容?

I have a div like this:

<div class="EventsRollup">
    <span class="EventsRollupTitle">Health Lecture Events</span>
    <!--this is where a table would be dynamically inserted by sharepoint 
        based on some filter, if filter is true, a tabel will get in there, 
        else not-->
</div>

Using jQuery, how do I hide the whole div if no table was inserted because the div has background color and the empty background color shows with no table contents?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

大姐,你呐 2024-12-29 07:12:49
$('.EventsRollup').not(':has(table)').hide();

或者

$('.EventsRollup:not(:has(table))').hide();
$('.EventsRollup').not(':has(table)').hide();

or

$('.EventsRollup:not(:has(table))').hide();
べ繥欢鉨o。 2024-12-29 07:12:49
if ($('.EventsRollup').find('table').length === 0) {
    $('.EventsRollup').hide();
}

这假设只有一个 .EventsRollup...如果有更多,您可以使用循环...

$('.EventsRollup').each(function() {
    $this = $(this);
    if ($this.find('table').length === 0) {
        $this.hide();
    }
});
if ($('.EventsRollup').find('table').length === 0) {
    $('.EventsRollup').hide();
}

This assumes there is only one .EventsRollup... If there are more, you could use a loop...

$('.EventsRollup').each(function() {
    $this = $(this);
    if ($this.find('table').length === 0) {
        $this.hide();
    }
});
你是暖光i 2024-12-29 07:12:49
jQuery( ".EventsRollup").filter( function(){
return !this.getElementsByTagName("table").length;
}).hide();
jQuery( ".EventsRollup").filter( function(){
return !this.getElementsByTagName("table").length;
}).hide();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文