“XMLHttpRequest无法加载file:///path/to/file.html”错误

时间:2014-08-28 14:08:10

标签: javascript jquery html

我尝试使用以下jquery load命令按下某个文件时在div中加载本地html文件。

$("#div_name").load("local_html_file");

但是我收到了以下错误。

MLHttpRequest cannot load file:///path/to/file.html. Received an invalid response. Origin 'null' is therefore not allowed access. 

我没有运行任何特殊服务器。只需使用Chrome运行我的html文件即可。我搜索了它,知道问题是什么,但不知道如何解决它。

1 个答案:

答案 0 :(得分:1)

Jquery .load()方法是一个ajax调用。

这就是为什么它不能在本地运行...你需要在接受HttpRequest的服务器上运行它。

之前已经讨论过: