gpt4 book ai didi

javascript - 如果包含php的div标签为空,则隐藏div或显示某些文本

转载 作者:行者123 更新时间:2023-11-28 00:59:18 24 4
gpt4 key购买 nike

似乎有很多关于隐藏空 div 的答案,但是在我尝试了几个但没有成功后,我问了自己的问题。我的页面上有这个部分来显示各种内容,在本例中是标题。

这是有标题显示时的样子:

enter image description here

这是没有标题显示时的样子:

enter image description here

这就是我希望没有标题显示时的样子:

enter image description here

下面是处理这个问题所涉及的领域的代码部分,标题是在成员(member)拥有多少分后收集的,并且是从functions.php收集的,所以我想要一些可以读取没有标题的东西从functions.php收集,然后代替丑陋的小方 block 它显示没有标题如果有人知道这个问题的答案我会非常高兴,我已经研究了几个小时但没有成功,我应该说我是一个新手当谈到 php 时,甚至当谈到 javascript 和 jquery 时也不是这样。

 <div id='dumb'>
<div id="assocpoint2">TITEL/S:</div><div id="assocpointprint2">
<? if($gender === 'Mare'){echo find_asda_title($horse);}elseif($gender === 'Stallion'){echo find_asda_title($horse);}elseif($gender === 'Gelding'){echo find_asda_title($horse);} ?>
<? if($gender === 'Mare'){echo find_asea_title($horse);}elseif($gender === 'Stallion'){echo find_asea_title($horse);}elseif($gender === 'Gelding'){echo find_asea_title($horse);} ?>
<? if($gender === 'Mare'){echo find_asja_title($horse);}elseif($gender === 'Stallion'){echo find_asja_title($horse);}elseif($gender === 'Gelding'){echo find_asja_title($horse);} ?>
<? if($gender === 'Mare'){echo find_sisf_title($horse);}elseif($gender === 'Stallion'){echo find_sisf_title($horse);}elseif($gender === 'Gelding'){echo find_sisf_title($horse);} ?>
<? if($gender === 'Mare'){echo find_aspa_title($horse);}elseif($gender === 'Stallion'){echo find_aspa_title($horse);}elseif($gender === 'Gelding'){echo find_aspa_title($horse);} ?>
<? if($gender === 'Mare'){echo find_aswa_title($horse);}elseif($gender === 'Stallion'){echo find_aswa_title($horse);}elseif($gender === 'Gelding'){echo find_aswa_title($horse);} ?>
</div></div>

最佳答案

大部分代码似乎完全毫无意义/重复。为什么不更像是:

$output = find_asda_title($horse) . find_asea_title($horse) . etc...
if (in_array($gender, array('Mare', 'Gelding', 'Stallion')) {
echo $output;
} else {
echo stuff to hide the div
}

关于javascript - 如果包含php的div标签为空,则隐藏div或显示某些文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25817252/

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