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 和 JS 组成,没有 Php。
我习惯在 php 中这样做,有没有办法在 html 中做到这一点?:
<?php include 'menu.php' ?>
没有。不能纯粹用 HTML 来做。
如果你想走老路,你可以设置一些服务器端包括:
<!--#include file="menu.html" -->
因为您已经共享了外部 JS 文件,所以这是避免重复自己的一种途径。
我使用以下语法对 jQuery 做了类似的事情:
$(function(){ $('#header-region').load('menu.html'); });