gpt4 book ai didi

php - 在某个html页面隐藏div

转载 作者:行者123 更新时间:2023-11-28 13:24:53 25 4
gpt4 key购买 nike

为这个新手问题道歉。

我创建了一个使用相同 header 的 html 页面 (dash.html)和其他页面一样。它调用这个 PHP 函数 <?php include 'header.php'; ?>

dash.html 包含一个特殊的 <div>专为该页面制作;它必须放在 header.php

我正在尝试弄清楚如何启用/禁用某个 div在某个 html 页面上。

它需要 PHP 条件语句吗?

最佳答案

是的。最简单的方法是在 header 中包含一个条件行,并从调用 header 的每个页面传递 checked 变量。因此,在您的 dash.php 中(如果它调用 php,它就不能是 .html,对吗?):

<?php
$includediv = true; // set to false, or leave out, if you don't want the div
include('header.php');
?>

在 header.php 中:

<?php
...some other code...
if($includediv){
...code to include div...
}
?>

对于调用 header.php 的所有其他页面,这将像以前一样继续工作。

关于php - 在某个html页面隐藏div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14290413/

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