从其他.html文档加载内容

时间:2014-08-05 23:19:48

标签: javascript jquery html5

我不确定为什么突然它没有从其他html文档中加载内容。

$('a').on('click', function(e){
    e.preventDefault();

    $.get('page1.html', function(data){
        var content = $('#result', data).html();
        console.log(content);
    });

});

<a href="#">Load Page</a>

之前在page1.html中加载了名为#result的div中的内容,我不知道我改变了什么,但它现在还没有用。

的console.log

XMLHttpRequest cannot load file:///I:/page1.html. Received an invalid response. Origin 'null' is therefore not allowed access. 

1 个答案:

答案 0 :(得分:1)

在您的控制台日志中,您似乎没有使用服务器,并且出于安全原因,不允许使用javascript(XMLHttpRequest)访问您计算机的本地文件

此处I:/page1.html是本地文件系统地址

这就是没有加载文件的原因。