无法使用jquery从相对路径加载文件

时间:2015-04-13 07:48:53

标签: javascript jquery

使用jquery我正在尝试使用来自父文件夹(项目)的其他子文件夹(folder2 \ index.html)的jquery加载html文件(page.html);但它给出了以下错误:“InternalError:太多的递归”。 以下是样本的层次结构:

|-Project
  |-folder2
  |  |-page.html (html to load)
  |
  |-folder1
     |-index.html(page where the loading script is called from) 

这是我正在使用的代码

$( "#destination-ressource" ).load( "../folder2/page.html", function( response, status, xhr ) {  
    //do somthing
});

当检查xhr.statusText时,它会给出以下消息:“NS_ERROR_DOM_BAD_URI:访问受限制的URI被拒绝”

我也试图替换

  

“../文件夹2 / page.html中”

通过

  

“./文件夹2 / page.html中”

但它不起作用。

1 个答案:

答案 0 :(得分:0)

如果您的脚本位于单独的文件j中,则相对路径来自该脚本的路径,而不是来自您的html文件