それぞれヘッダーとフッターを持つjqueryページがいくつかあります。単一のヘッダーとフッターにする方法を教えてください。(ie) メイン ページのヘッダー/フッター セクションにヘッダー/フッター html ファイルをロードしたい。
ご意見をお聞かせください。
以下のページ構造を見つけてください....
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Single page template</title>
<link rel="stylesheet" href="css/jquery.mobile-1.2.0.min.css" />
<script src="js/jquery-1.8.2.min.js"></script>
<script src="js/customScript.js"></script>
<script src="js/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page" id="page1">
<div id="hdr">
<!--Need to include header.html-->
</div>
<div data-role="content">
<!--Content-->
</div>
<div id="ftr">
<!--Need to include footer.html-->
</div>
</div>
</body>
</html>
前もって感謝します....