我需要開發一個完全靜態的網站。這個網站有很多子頁面。由於標題部分對所有子頁面都是通用的,因此我將標題部分放在header.html中,並在每個子頁面完成加載時使用jquery加載它。這個header.html也從圖像文件夾加載圖像。如果我將所有的子頁面保留在根目錄下,沒有任何問題。靜態網站路由問題提取常見的HTML後分開的文件
但是,由於有很多子頁面,我想重新排列它們在子文件夾中。但是,加載子頁面時,我的header.html不會加載圖像,除非我將路徑更改爲'../images/image.png'。在此路徑更改後加載index.html時,會導致相同的問題。
下面顯示了每個文件的簡化網站結構和代碼。任何人都可以給我一些關於如何克服這個問題的建議嗎?
非常感謝!
我的網站結構:
common/
header.html
images/
image.png
js/
jquery-1.11.1.min.js
subpages/
page1.html
index.html
我的代碼頁: 的index.html
<!DOCTYPE html>
<html>
<head>
<title>A site</title>
<script src="js/jquery-1.11.1.min.js" type="text/javascript"></script>
</head>
<body>
<div id="header"></div>
</body>
<script type="text/javascript">
$('#header').load('common/header.html')
</script>
</html>
了header.html
<div id='logo'><img src='images/image.png' alt="image"></img></div>
<h1> This is header </h1>
<div id='subpage'><a href='subpages/page1.html'>Page 1</a></div>
page1.html
<!DOCTYPE html>
<html>
<head>
<title>This is a subpage</title>
<script src="../js/jquery-1.11.1.min.js" type="text/javascript"</script>
</head>
<body>
<div id="header"></div>
<h1> This is a subpage </h1>
</body>
<script type="text/javascript">
$('#header').load('../common/header.html')
</script>
</html>
只需使用指向域根的路徑,以斜槓開始。 – CBroe