gpt4 book ai didi

php - jQuery - 检查 div 是否有内容,如果没有则将类添加到顶级 div

转载 作者:太空宇宙 更新时间:2023-11-04 15:52:06 24 4
gpt4 key购买 nike

我真的希望有人能帮助我。我遇到此页面的问题:http://dd-server.co.uk/vinetrail/producers/

每个区域都有许多生产者,这些生产者通过可折叠的 div 显示。一切正常,但是当您使用页面顶部的过滤器时,它仍然可以正常工作,只是仍然显示空白区域。

我想使用 jQuery 来检测空的 div 并隐藏整个区域,因此只显示有生产者的区域。这是我的代码:

<div id="producer-list">            
<?php
$region_group_terms = get_terms( 'producer_region' );
$c = 0;
$id = 'section1';

foreach ( $region_group_terms as $region_group_term ) {
$c++;
$producers_query = new WP_Query( array(
'post_type' => 'producers',
'orderby' => 'title',
'order' => 'ASC',
'tax_query' => array(
array(
'taxonomy' => 'producer_region',
'field' => 'slug',
'terms' => array( $region_group_term->slug ),
'operator' => 'IN'
)
),
'search_filter_id' => 788
) );
?>

<div class="pro-wrap">
<?php if($c == 1) : ?>
<div class="collapsible collapse-open" id="<?php echo $id; ?>"><h2><?php echo $region_group_term->name; ?><span></span></h2></div>
<?php else : ?>
<div class="collapsible" id="<?php echo $region_group_term->name; ?>"><h2><?php echo $region_group_term->name; ?><span></span></h2></div>
<?php endif; ?>

<div class="container">
<div class="content">
<?php
if ( $producers_query->have_posts() ) : while ( $producers_query->have_posts() ) : $producers_query->the_post(); ?>
<div class="one-quarter">
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php echo get_permalink(); ?>"><?php echo get_the_post_thumbnail(); ?></a>
<?php else : ?>
<a href="<?php echo get_permalink(); ?>"><img src="<?php echo get_template_directory_uri(); ?>/img/producer-default.jpg" alt="<?php echo the_title(); ?>" /></a>
<?php endif; ?>

<h3>
<a href="<?php echo the_permalink(); ?>">
<?php echo $region_group_term->name; ?>
<span><?php echo the_title(); ?></span>
</a>
</h3>
</div>
<?php endwhile; endif; ?>

<?php
$member_group_query = null;
wp_reset_postdata();
?>
</div>
</div>
</div>
<?php } ?>
</div>

最佳答案

你可以试试这个,在 jQuery 中

Try 1

jQuery( document ).ready(function() {
// Loop over hidden element with class container
jQuery.each(jQuery('.pro-wrap .container:hidden'), function(i, ele){
// Hide closest parent found with class pro-wrap
jQuery(ele).closest('.pro-wrap').hide();
});
});

Try 2

jQuery( document ).ready(function() {
// Loop over element with class content
jQuery.each(jQuery('.pro-wrap .container .content'), function(i, ele){
var jEle = jQuery(ele);
// If empty content
if (jEle.text().trim().length == 0) {
// Hide closest parent found with class pro-wrap
jEle.closest('.pro-wrap').hide();
}
});
});

关于php - jQuery - 检查 div 是否有内容,如果没有则将类添加到顶级 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49363640/

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