如何在php网页中添加标题脚本?

时间:2017-06-24 20:04:15

标签: javascript php header include footer

我有几个页面使用相同的脚本,为此,我想创建一个header.php和footer.php文件并在每个页面上调用它们,例如。

的header.php

<link rel="stylesheet" href="../Framework/bootstrap/css/bootstrap.min.css"/>
<link rel="stylesheet" href="../Framework/bootstrap/css/bootstraptheme.min.css" />

footer.php

<script src="../Framework/jquery/jquery.min.js"></script>
<script src="../Framework/bootstrap/js/bootstrap.min.js"></script>

和我的php网页:

 <html>
 <head>
    //add header.php
 </head>
 <body>


  //add footer.php
  </body>
  </html>

3 个答案:

答案 0 :(得分:0)

<html>
 <head>
    <?php require('header.php'); ?>
 </head>
 <body>


  <?php require('footer.php'); ?>
  </body>
  </html>

正如chris85指出的那样 - 你可以使用include而不是require ...

答案 1 :(得分:0)

<html>
 <head>
    <?php include('header.php');?>
 </head>
 <body>
   <?php include('footer.php');?>
 </body>
</html>

答案 2 :(得分:-1)

您可以使用jquery

来实现此目的
<html>
 <head>
    <script src="//code.jquery.com/jquery-1.10.2.js"></script>
    <div id="header"></div> //add header.php
 </head>
 <body>


  <div id="footer"></div> //add footer.php
  <script>
  $(document).ready(function(){
  $('#header').load('header.html');
  $("#footer").load("footer.html"); 
  });
  </script>
  </body>
  </html>