我已完成以下操作。但是由于这个原因,页面上的Javascript元素无效。
<html>
<head>
<script type="text/javascript">
$(document).ready(function(){
$.get("header.html", function(data) {
$("#header").html(data);
});
});
</script>
</head>
<body>
<div id="header"></div>
<content>
</content>
</body>
</html>
答案 0 :(得分:0)
如果您可以设法在您的计算机上设置像XAMPP这样的虚拟服务器,那么使用PHP,您可以使用一行代码在任何页面上包含页眉和页脚。
<header><?php include 'header.php';?></header>
和页脚
<footer><?php include 'footer.php';?></footer>