Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HTML/CSS 非常新。我应该如何制作一个在我的页面上全局跟踪的导航栏?就像我在导航栏上的列表中添加一个项目一样,我希望它在所有页面上更新,而不是一个接一个地写在一个页面中。
使用 PHP:
<?php include ('navbar.php'); ?>
创建一个 navbar.php 文件,其中包含您的 html 代码。
做到这一点的唯一方法是使用服务器端脚本语言(如 PHP)。仅使用客户端脚本(HTML 和 CSS)是无法实现的。使用 PHP include,您可以添加外部文件,如下所示:
include
<?php include('filename.php'); ?>
该文件filename.php将被添加到页面中。
filename.php
标签