我知道使用 rails 和 django,您可以使用模板将页眉和页脚作为单独的文件编写一次,并将其包含在您的所有网页中。我想知道,这样的事情可以用 jQuery 或 html5 来实现吗?如果是这样,如何?
<html>
<head></head>
<body>
<navigation> include code from header.html here </navigation>
...
some page specific content
...
<footer>include code from footer.html here</footer>
</body>
</html>