简体   繁体   English

如果满足条件,如何更改div的背景颜色?

[英]How can I change the background color of div if the condition is met?

Here is the code for notification code: 这是通知代码的代码:

<?php if(isset($notification) && $notification->result() >0 ){?>
    <div class="panel-heading pull-right col-md-6"
    style="height:140px; margin-top:-140px; background-color:white; overflow-y: scroll;">
        <h5><strong>Student with 3 Consecutive Absences</strong></h5>
            <table class="table">
                <thead>
                    <th>Course Code-Section</th>
                    <th>Student Name</th>
                    <th>View</th>
                </thead>
            <tbody>
                <?php foreach($notification->result() as $notif)
                {
                    if($notif->Total >=3)
                    {
                    ?>
                        <tr>
                            <td><?php echo $notif->Course_Code_Section?</td>
                            <td><?php echo $notif->Student?></td>
                            <td>
                                <form action="<?php echo base_url();?>index.php/attendance/check" method="post" target="_blank">
                                    <input type="hidden" name="CID" value="<?php echo $notif->CID;?>">
                                    <button class="btn btn-xs btn-success"><i class="icon-eye-open"></i> View</button>
                                <?php echo form_close();?>
                            </td>
                        </tr>
                        </div>
                        <?php }?>
                    <?php }?>
                </tbody>
            </table>
    </div>
<?php }?>

Here is the notification view, the default background color is white. 这是通知视图,默认背景颜色为白色。 Therefore, I want it to make the background color red when the condition met. 因此,我希望在满足条件时将背景颜色设为红色。

通知检视

Try this: 尝试这个:

<?php
$style = '';
if(isset($notification) && $notification->result() > 0 )
{
    $style = 'style="color:red"';
    // Put your css style property here
}
?>

Html: HTML:

<div <?php echo $style ?>>

</div>

If your condition is true in PHP you can just this line in your tag: 如果您的条件在PHP中为true,则可以在代码中添加以下行:

<tr bgcolor="#FF0000">

I don't know if my html code will appear or not. 我不知道我的HTML代码是否会出现。 Please refer this site: 请参考这个网站:

https://www.w3schools.com/tags/att_tr_bgcolor.asp https://www.w3schools.com/tags/att_tr_bgcolor.asp

You can do as - 您可以这样做-

<?php
if(your condition)
{
 ?>   
   <style>
#your_div
{
 background:red !important;
}
</style>
<?php
}
else
{
?>   
   <style>
#your_div
{
 background:white !important;
}
</style>
<?php
}
?>

Please try this code ,i hope this is your condition 请尝试此代码,我希望这是您的条件

 <?php 
$bcolor ='background-color:white';
if(isset($notification) && $notification->result() >0 ){
$bcolor ='background-color:white';
 }?>
    <div class="panel-heading pull-right col-md-6"
    style="height:140px; margin-top:-140px; <?php echo $bcolor ;?> overflow-y: scroll;">
        <h5><strong>Student with 3 Consecutive Absences</strong></h5>
            <table class="table">
                <thead>
                    <th>Course Code-Section</th>
                    <th>Student Name</th>
                    <th>View</th>
                </thead>
            <tbody>
                <?php foreach($notification->result() as $notif)
                {
                    if($notif->Total >=3)
                    {
                    ?>
                        <tr>
                            <td><?php echo $notif->Course_Code_Section?</td>
                            <td><?php echo $notif->Student?></td>
                            <td>
                                <form action="<?php echo base_url();?>index.php/attendance/check" method="post" target="_blank">
                                    <input type="hidden" name="CID" value="<?php echo $notif->CID;?>">
                                    <button class="btn btn-xs btn-success"><i class="icon-eye-open"></i> View</button>
                                <?php echo form_close();?>
                            </td>
                        </tr>
                        </div>
                        <?php }?>
                    <?php }?>
                </tbody>
            </table>
    </div>

try 尝试

<?php 
    $bg_red = '';
    if (condition) {
       $bg_red = '<style="background-color: red;">';
    }
?>

<tr <php? echo $bg_red; ?>>
   <td></td>
   <td></td>
   <td></td>
</tr>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM