gpt4 book ai didi

php - 当if条件满足时隐藏div标签

转载 作者:行者123 更新时间:2023-12-02 18:26:52 27 4
gpt4 key购买 nike

我试图隐藏 <div>当我的数据是zero时标记...

我有if condition

if ($_SESIION['m1']==0)
{

我想要停用该标签,这是我的 <div>标签

<div class="right"><a href="<?php echo $checkout; ?>" class="button" id="checkout"><?php echo $button_checkout; ?></a></div> 

else

<div>应该被激活..

我真的不知道如何实现这个目标。

最佳答案

如果你想完全删除div,这样做;

if( !empty( $_SESSION[ 'm1' ] ) )
{
//echo your div here, it will only appear when m1 is not 0/false/blank/null
}
else
{
//m1 is 0/false/blank/null, you can print out a relevant message here
}

如果你想在HTML中包含div,但隐藏它,只需添加必要的样式即可;

<div class="right" <?php if( empty( $_SESSION[ 'm1' ] ) ) { ?>style="display:none;"<?php } ?>>
<a href="<?php echo $checkout; ?>" class="button" id="checkout"><?php echo $button_checkout; ?></a>
</div>

关于php - 当if条件满足时隐藏div标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18285757/

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