由於我的網站只有一個頁面,而且index.html
變得非常長且無法閱讀。所以我決定把每個部分放在不同的HTML
文件中,並使用jQuery來包含它。jQuery的包含方法不起作用
我用jQuery的方式,因爲它已被提及here包括外部HTML
文件,但顯然它不適用於我的網站。我真的不知道是什麼問題。
Here是我工作區的鏈接。
以下是我在index.html
文件正在做的,包括其他部分
<script src="./js/jquery-1.11.1.min"></script>
<script>
$(function() {
$("#includedContent").load("./page1.html");
});
</script>
<script>
$(function() {
$("#includedContent").load("./page2.html");
});
</script>
<script>
$(function() {
$("#includedContent").load("./page3.html");
});
</script>
<script>
$(function() {
$("#includedContent").load("./page4.html");
});
</script>
<script>
$(function() {
$("#includedContent").load("./page5.html");
});
</script>
<script>
$(function() {
$("#includedContent").load("./page6.html");
});
</script>
<script>
$(function() {
$("#includedContent").load("./page7.html");
});
</script>
我也用this方法,以確保文件訪問,一切都很好。所以,問題不在於文件的可訪問性
您是否通過刪除緩存來刷新瀏覽器? – Chakra 2014-11-05 08:19:47
是的。仍然無法正常工作。 – 2014-11-05 08:21:16
刪除'。/'並再次嘗試。 – 2014-11-05 08:23:57