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.
有没有更快的方法让导航栏/按钮进入我网站的所有页面,而不是进入每个 .php 文件并复制和粘贴它。我如何将 class="button" 链接到另一个文件,以便它更改我网站上的整个导航?
只需使用包含语句。
include 'nav.php';
在每一页上。
Nav.php 只能包含导航。
首先将您的 php 文件分隔为 header.php 用于页眉菜单和 footer.php 用于页脚菜单。然后将文件包含在 pages 中。
请参阅此示例以供参考。