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

时间:2013-09-10 06:51:05

标签: javascript jquery html css

我想创建包含在几个html页面上的常见页眉和页脚页面。

我想使用javascript。有没有办法只使用html和JavaScript?

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

13 个答案:

答案 0 :(得分:163)

您可以使用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.htmlfooter.html中,与index.html

位于同一位置
<a href="http://www.google.com">click here for google</a>

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

答案 1 :(得分:26)

您必须使用JavaScript的html文件结构吗?您是否考虑过使用PHP,以便可以使用简单的PHP包含对象?

如果您将.html页面的文件名转换为.php - 然后在每个.php页面的顶部,您可以使用一行代码来包含header.php中的内容

<?php include('header.php'); ?>

在每个页面的页脚中执行相同操作以包含footer.php文件中的内容

<?php include('footer.php'); ?>

不需要JavaScript / Jquery或其他包含的文件。

注意您还可以使用.htaccess文件中的以下内容将.html文件转换为.php文件

# re-write html to php
RewriteRule ^(.*)\.html$ $1.php [L]
RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]


# re-write no extension to .php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]

答案 2 :(得分:23)

我使用服务器端包含添加公共部分作为页眉和页脚。不需要HTML和JavaScript。相反,Web服务器会在执行任何其他操作之前自动添加包含的代码。

只需在要包含文件的位置添加以下行:

<!--#include file="include_head.html" -->

答案 3 :(得分:8)

我试过这个: 创建一个 header.html 文件,如

<!-- Meta -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<!-- JS -->
<script type="text/javascript" src="js/lib/jquery-1.11.1.min.js" ></script>
<script type="text/javascript" src="js/lib/angular.min.js"></script>
<script type="text/javascript" src="js/lib/angular-resource.min.js"></script>
<script type="text/javascript" src="js/lib/angular-route.min.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css">

<title>Your application</title>

现在在HTML网页中加入 header.html ,例如:

<head>
   <script type="text/javascript" src="js/lib/jquery-1.11.1.min.js" ></script>
   <script> 
     $(function(){ $("head").load("header.html") });
   </script>
</head>

完美无缺。

答案 4 :(得分:6)

你也可以把:(load_essentials.js :)

document.getElementById("myHead").innerHTML =
	"<span id='headerText'>Title</span>"
	+ "<span id='headerSubtext'>Subtitle</span>";
document.getElementById("myNav").innerHTML =
	"<ul id='navLinks'>"
	+ "<li><a href='index.html'>Home</a></li>"
	+ "<li><a href='about.html'>About</a>"
	+ "<li><a href='donate.html'>Donate</a></li>"
	+ "</ul>";
document.getElementById("myFooter").innerHTML =
	"<p id='copyright'>Copyright &copy; " + new Date().getFullYear() + " You. All"
	+ " rights reserved.</p>"
	+ "<p id='credits'>Layout by You</p>"
	+ "<p id='contact'><a href='mailto:you@you.com'>Contact Us</a> / "
	+ "<a href='mailto:you@you.com'>Report a problem.</a></p>";
<!--HTML-->
<header id="myHead"></header>
<nav id="myNav"></nav>
Content
<footer id="myFooter"></footer>

<script src="load_essentials.js"></script>

答案 5 :(得分:5)

我一直在C#/ Razor工作,因为我的家用笔记本电脑上没有IIS设置,所以在为我们的项目创建静态标记时,我寻找了一个加载视图的JavaScript解决方案。

我偶然发现了一个网站,解释了“放弃jquery”的方法,它演示了一个网站上的方法确实完全是你在普通的简javascript(帖子底部的参考链接)之后所做的事情。如果您打算在生产中使用它,请务必调查任何安全漏洞和兼容性问题。我不是,所以我自己从未调查过。

JS功能

var getURL = function (url, success, error) {
    if (!window.XMLHttpRequest) return;
    var request = new XMLHttpRequest();
    request.onreadystatechange = function () {
        if (request.readyState === 4) {
            if (request.status !== 200) {
                if (error && typeof error === 'function') {
                    error(request.responseText, request);
                }
                return;
            }
            if (success && typeof success === 'function') {
                success(request.responseText, request);
            }
        }
    };
    request.open('GET', url);
    request.send();
};

获取内容

getURL(
    '/views/header.html',
    function (data) {
        var el = document.createElement(el);
        el.innerHTML = data;
        var fetch = el.querySelector('#new-header');
        var embed = document.querySelector('#header');
        if (!fetch || !embed) return;
        embed.innerHTML = fetch.innerHTML;

    }
);

<强>的index.html

<!-- This element will be replaced with #new-header -->
<div id="header"></div>

<强>视图/ header.html中

<!-- This element will replace #header -->
<header id="new-header"></header>

源代码不是我自己的,我只是引用它,因为它是OP的一个很好的vanilla javascript解决方案。原始代码位于此处:http://gomakethings.com/ditching-jquery#get-html-from-another-page

答案 6 :(得分:5)

我认为,这个问题的答案太旧了...目前有些桌面和移动浏览器支持 HTML模板来执行此操作。

我已经建立了一个小例子:

Chrome 61.0,Opera 48.0,Opera Neon 1.0,Android Browser 6.0,Chrome Mobile 61.0和Adblocker Browser 54.0中的

经过测试确认 Safari 10.1,Firefox 56.0,Edge 38.14和IE 11中经过测试的KO

canisue.com

中的更多兼容性信息

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>HTML Template Example</title>

    <link rel="stylesheet" href="styles.css">
    <link rel="import" href="autoload-template.html">
</head>
<body>

<div class="template-container">1</div>
<div class="template-container">2</div>
<div class="template-container">3</div>
<div class="template-container">4</div>
<div class="template-container">5</div>

</body>
</html>

<强> autoload-template.html

<span id="template-content">
    Template Hello World!
</span>

<script>
    var me = document.currentScript.ownerDocument;
    var post = me.querySelector( '#template-content' );

    var container = document.querySelectorAll( '.template-container' );

    //alert( container.length );
    for(i=0; i<container.length ; i++) {
        container[i].appendChild( post.cloneNode( true ) );
    }
</script>

<强> styles.css

#template-content {
    color: red;
}

.template-container {
    background-color: yellow;
    color: blue;
}

您可以在此HTML5 Rocks post

中获得更多示例

答案 7 :(得分:1)

为了使用普通 javascript 进行快速设置,并且由于尚未回答,您还可以使用 .js 文件将 HTML 的冗余部分 (templates) 存储在变量中并插入它通过innerHTML

backticks 在这里让它变得简单这个答案是关于。
(如果您阅读并测试该答案,您还需要点击该反引号上的链接,SO Q/A)

导航栏在每个页面上保持不变的示例:

<nav role="navigation'>
    <a href="/" class="here"><img src="image.png" alt="Home"/></a>
    <a href="/about.html" >About</a>      
    <a href="/services.html" >Services</a>          
    <a href="/pricing.html" >Pricing</a>    
    <a href="/contact.html" >Contact Us</a>
</nav>

您可以保留在您的 HTMl 中:

<nav role="navigation"></nav>

并在 nav.js 文件中设置 <nav> 的内容作为反引号之间的变量:

const nav= `
    <a href="/" class="here"><img src="image.png" alt="Home"/></a>
    <a href="/about.html" >About</a>      
    <a href="/services.html" >Services</a>          
    <a href="/pricing.html" >Pricing</a>    
    <a href="/contact.html" >Contact Us</a>
` ;

现在您有一个小文件,您可以从中检索包含 HTML 的变量。它看起来与 include.php 非常相似,并且可以轻松更新而不会弄乱它(反引号内的内容)

您现在可以像任何其他 javascript 文件一样链接该文件,并通过

链接到 nav 内的 var <nav role="navigation"></nav> 内部 HTML
let barnav = document.querySelector('nav[role="navigation"]');
    barnav.innerHTML = nav;

如果您添加或删除页面,则只需更新一次nav.js

基本的 HTML 页面可以是:

// code standing inside nav.js for easy edit
const nav = `
    <a href="/" class="here"><img src="image.png" alt="Home"/></a>
    <a href="/about.html" >About</a>      
    <a href="/services.html" >Services</a>          
    <a href="/pricing.html" >Pricing</a>    
    <a href="/contact.html" >Contact Us</a>
`;
nav[role="navigation"] {
  display: flex;
  justify-content: space-around;
}
<!DOCTYPE html>

<html lang="en">

<head>
  <meta charset="utf-8">
  <title>Home</title>
  <!-- update title   if not home page -->
  <meta name="description" content=" HTML5 ">
  <meta name="author" content="MasterOfMyComputer">
  <script src="nav.js"></script>
  <!-- load an html template through a variable -->
  <link rel="stylesheet" href="css/styles.css?v=1.0">
</head>

<body>

  <nav role="navigation">
    <!-- it will be loaded here -->
  </nav>
  <h1>Home</h1>
  <!-- update h1 if not home page -->

  <script>
    // this part can also be part of nav.js 
    window.addEventListener('DOMContentLoaded', () => {
      let barnav = document.querySelector('nav[role="navigation"]');
      barnav.innerHTML = nav;
    });
  </script>
</body>

</html>

这个快速示例有效,可以复制/粘贴,然后编辑以更改变量名称和变量 HTML 内容。

答案 8 :(得分:0)

也可以将脚本和链接加载到标题中。 我将在上面添加一个例子......

<body ng-app>    
<div ng-controller="MainCtrl">
    <input type="date" ng-model="dateString"/>     
    <br/>{{ dateString }}
     <br/><input type="date" ng-model="date1"/>    
    <br/>{{ date1 }}
</div>
</body>

function MainCtrl($scope, dateFilter) {
    $scope.dateString = "2015-08-11T00:00:00";
    $scope.date1 = new Date("2015-08-11");
}

答案 9 :(得分:0)

另一种方法是可用的,因为这个问题首先被问到是使用reactrb-express(参见http://reactrb.org)这将允许你在客户端的ruby脚本,用ruby编写的反应组件替换你的html代码。

答案 10 :(得分:0)

2018年的阿罗哈。不幸的是,我没有任何冷静或未来感与你分享。

但我想指出那些评论说jQuery load()方法目前无法正常工作的人可能会尝试将该方法用于本地文件,而无需运行本地Web服务器。这样做会引发上面提到的&#34;交叉起源&#34; error,指定只有httpdatahttps等协议方案支持交叉原始请求,例如load方法生成的请求。 (我假设您没有提出实际的跨域请求,即header.html文件实际上与您要求的网页位于同一个域中)

因此,如果上面接受的答案不适合您,请确保您正在运行Web服务器。如果你匆忙(并使用预先安装了Python的Mac),最快捷,最简单的方法就是启动一个简单的Python http服务器。您可以看到执行here是多么容易。

我希望这有帮助!

答案 11 :(得分:0)

使用ajax
main.js

fetch("./includes/header.html")
    .then(response => {
        return response.text();
    })
    .then(data => {
        document.querySelector("header").innerHTML = data;
    });

fetch("./includes/footer.html")
    .then(response => {
        return response.text();
    })
    .then(data => {
        document.querySelector("footer").innerHTML = data;
    });

index.html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>Liks</title>
        <link rel="stylesheet" href="css/styles.css">
    </head>
    <body>
        <header></header>
        <main></main>
        <footer></footer>
        <script src="/js/main.js"></script>
    </body>
</html>

答案 12 :(得分:-1)

保存要包含在.html文件中的HTML:

Content.html

<a href="howto_google_maps.asp">Google Maps</a><br>
<a href="howto_css_animate_buttons.asp">Animated Buttons</a><br>
<a href="howto_css_modals.asp">Modal Boxes</a><br>
<a href="howto_js_animate.asp">Animations</a><br>
<a href="howto_js_progressbar.asp">Progress Bars</a><br>
<a href="howto_css_dropdown.asp">Hover Dropdowns</a><br>
<a href="howto_js_dropdown.asp">Click Dropdowns</a><br>
<a href="howto_css_table_responsive.asp">Responsive Tables</a><br>

包含HTML

包含HTML的方法是使用 w3-include-html 属性:

示例

    <div w3-include-html="content.html"></div>

添加JavaScript

HTML包含由JavaScript完成。

    <script>
    function includeHTML() {
      var z, i, elmnt, file, xhttp;
      /*loop through a collection of all HTML elements:*/
      z = document.getElementsByTagName("*");
      for (i = 0; i < z.length; i++) {
        elmnt = z[i];
        /*search for elements with a certain atrribute:*/
        file = elmnt.getAttribute("w3-include-html");
        if (file) {
          /*make an HTTP request using the attribute value as the file name:*/
          xhttp = new XMLHttpRequest();
          xhttp.onreadystatechange = function() {
            if (this.readyState == 4) {
              if (this.status == 200) {elmnt.innerHTML = this.responseText;}
              if (this.status == 404) {elmnt.innerHTML = "Page not found.";}
              /*remove the attribute, and call this function once more:*/
              elmnt.removeAttribute("w3-include-html");
              includeHTML();
            }
          } 
          xhttp.open("GET", file, true);
          xhttp.send();
          /*exit the function:*/
          return;
        }
      }
    }
    </script>

在页面底部调用includeHTML():

示例

<!DOCTYPE html>
<html>
<script>
function includeHTML() {
  var z, i, elmnt, file, xhttp;
  /*loop through a collection of all HTML elements:*/
  z = document.getElementsByTagName("*");
  for (i = 0; i < z.length; i++) {
    elmnt = z[i];
    /*search for elements with a certain atrribute:*/
    file = elmnt.getAttribute("w3-include-html");
    if (file) {
      /*make an HTTP request using the attribute value as the file name:*/
      xhttp = new XMLHttpRequest();
      xhttp.onreadystatechange = function() {
        if (this.readyState == 4) {
          if (this.status == 200) {elmnt.innerHTML = this.responseText;}
          if (this.status == 404) {elmnt.innerHTML = "Page not found.";}
          /*remove the attribute, and call this function once more:*/
          elmnt.removeAttribute("w3-include-html");
          includeHTML();
        }
      }      
      xhttp.open("GET", file, true);
      xhttp.send();
      /*exit the function:*/
      return;
    }
  }
};
</script>
<body>

<div w3-include-html="h1.html"></div> 
<div w3-include-html="content.html"></div> 

<script>
includeHTML();
</script>

</body>
</html>