我试图在我的根目录之前加载一个json文件和一些位于其他目录中的图像。我现在正在尝试使用此代码来获取它。它工作正常,但似乎不是完美的方式。
$.getJSON("http://localhost/folder1/folder2/folder3/content/LB/contents/content.json", function(json){
console.log(json);
}
和图片
<img src="http://localhost/folder1/folder2/folder3/content/LB/contents/locations/locationname/thumbnail.png />
我试图将json和图片加载到
http://localhost/folder1/folder2/folder3/content/LB/appdrive/html/someHTML.html
http://localhost/folder1/folder2/folder3/content/LB/appdrive/html/js/someJS.js
我只使用HTML,CSS和JAVASCRIPT。所以主要的问题是有没有办法将json和图像的来源改为像这样的
$.getJSON("folder2/folder3/content/LB/contents/content.json", function(json){
console.log(json);
}
和图片
<img src="../folder2/folder3/content/LB/contents/locations/locationname/thumbnail.png />
还有一件事要说,FOLDER2是根目录。
答案 0 :(得分:0)
是。你可以&#34; root&#34;您的网站根目录的网址(例如,&#39; / folder1 / folder2 / folder3 /.../ content.json&#39;)。注意前导斜杠。