我不知道这是否可能,但我想知道是否可以根据 if/else 语句设置页面的背景颜色?
我想要的是,如果满足 if 语句,那么我希望主体的背景颜色为白色,如果在包含 div 的地方满足 else 语句,那么我希望主体的背景颜色为灰色。
这可以做到吗?
<?php
if (page()){
//all the code in the page
}else{
?>
<div class="boxed">
</div>
<?php
}
?>
更新:
<?php
if (page()){
?>
<body class="bodypage <?php echo page()? "color1":"color2" ?>" >
</body>
<?php
}else{
<div class="boxed">
<a href="<?php echo $pages[$currentPages+1] ?>">Continue with Current Assessment</a>
</div>
}
?>