我想在所有页面中包含页眉和页脚。我可以使用include()函数在php中包含。但我只有.html文件。那么是否有任何html标记包含另一个html文件。
答案 0 :(得分:2)
使用jquery,您可以执行ajax请求:
$('footer').load('/yourPage.html', function () {
//if you need to do something after
});
答案 1 :(得分:0)
使用HTML Imports
<head>
<link rel="import" href="/path/to/file/file.html">
</head>
并将其用于:
var content = document.querySelector('link[rel="import"]').import;