小编典典

使页眉和页脚文件包含在多个html页面中

javascript

我想创建包含在多个html页面中的通用页眉和页脚页面。

我想使用JavaScript。有没有办法只使用html和JavaScript来做到这一点?

我想在另一个html页面中加载页眉和页脚页面。


阅读 318

收藏
2020-04-25

共1个答案

小编典典

您可以使用jquery完成此操作。

将此代码放在 index.html

<html>
<head>
<title></title>
<script
    src="https://code.jquery.com/jquery-3.3.1.js"
    integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
    crossorigin="anonymous">
</script>
<script> 
$(function(){
  $("#header").load("header.html"); 
  $("#footer").load("footer.html"); 
});
</script> 
</head>
<body>
<div id="header"></div>
<!--Remaining section-->
<div id="footer"></div>
</body>
</html>

并将此代码放在header.html和中footer.html,与index.html

<a href="http://www.google.com">click here for google</a>

现在,当您访问时index.html,您应该可以单击链接标记。

2020-04-25