1

我已经包括以下内容来完成它。但是由于这个原因,页面上的 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>
4

1 回答 1

0

如果你能设法在你的机器上设置一个像 XAMPP 这样的虚拟服务器,然后使用 PHP,你可以用一行代码在任何你想要的页面上包含页眉和页脚。

<header><?php include 'header.php';?></header>

和页脚

<footer><?php include 'footer.php';?></footer>
于 2014-08-18T09:32:33.963 回答