当我包含另一个html

时间:2019-07-15 15:20:58

标签: html

我正在用HTML制作网页。每个HTML活动都使用相同的标头。因此,我使用了这段代码。

My web project's folder structure:
-activities
    -info.html
    -store.html
-common
 -header.html
-CSS
-images
 -logo.png
index.html

header.html中图像的位置:     “ ../ images / logo.png”

使用此代码,它可以在info.html和store.html中使用。但是徽标图片由于其位置而未显示在index.html中。

使其在所有文件中都能正常工作的最佳方法是什么?

<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript">

$(document).ready(function() {

    $("#header").load("common/header.html");

});

</script>

<body>
    <div id="header"></div>
</body>

0 个答案:

没有答案