2017-03-06 60 views
0

這個簡單的代碼只是不加載任何東西,問題在哪裏?超簡單的jQuery加載

<head> 
<script src="js/jquery.js"></script> 
<script src="js/load.js"></script> 
</head> 
<body> 

<div class="container-fluid bgres"> 
      <div class="container main" id="gora"> 

     </div> 
</div> 

</body> 

load.js

$(document).ready(function() { 
    $("#gora").load("gora.txt"); 
}); 

gora.txt只是HTML來自同一個地方切出

我試圖假裝PHP的包括功能

+1

瀏覽器開發工具的NET選項卡顯示什麼? –

+0

您是否正確加載了您的js,它是否應該是' ',因爲相對路徑有時會出錯在不同的網址 –

+0

jQuery正在工作,所以我假設路徑是正確的 這兩個js文件都在同一個文件夾中 – daki

回答

0
 $.ajax("sample.txt") 
     .done(function(data) { 
     $("#gora").html(data); 
    }); 
  • 在HTTP(ie)localhost協議中運行html文件不要在FTP中運行enter image description here
+0

下載Chrome瀏覽器 https://chrome.google.com/webstore/detail/web-server-for-chrome/ofhbbkphhbklhfoeikjpcbhemlocgigb?hl=zh-CN – rselvaganesh

+0

非常感謝 – daki