-1

我希望我的网站完全由 HTML、CSS 和 JS 组成,没有 Php。

我习惯在 php 中这样做,有没有办法在 html 中做到这一点?:

<?php include 'menu.php' ?>
4

2 回答 2

1

没有。不能纯粹用 HTML 来做。

如果你想走老路,你可以设置一些服务器端包括:

<!--#include file="menu.html" -->

因为您已经共享了外部 JS 文件,所以这是避免重复自己的一种途径。

于 2013-10-02T18:14:30.517 回答
0

我使用以下语法对 jQuery 做了类似的事情:

$(function(){
    $('#header-region').load('menu.html');
});
于 2013-10-02T18:19:22.843 回答