小编典典

无法从本地HTML页面Ajax本地文件

ajax

根据Same OriginPolicy,SOP不应应用于file://协议,但是为什么我的代码不起作用?我正在从本地系统运行此测试页面,并且与html页面位于同一目录中。如果我将URL更改为http://www.google.com/,它也无法正常工作。我不明白为什么,有人可以解释吗?

<!doctype html>
<html lang="us">
<head>
    <meta charset="utf-8">
    <title>jQuery UI Example Page</title>
    <link href="css/sunny/jquery-ui-1.10.2.custom.css" rel="stylesheet">
    <script src="js/jquery-1.9.1.js"></script>
    <script src="js/jquery-ui-1.10.2.custom.js"></script>
    <script>
    $.support.cors = true;
    $(function(){
        $(".btn1").button().click(function(){
            $.ajax({

              url: "abc.txt"

            }).done(function(result) {
              alert("done");
              $(".content").html(result);
            }).fail(function() { 
                alert("error"); 
            });
        });

    });

    </script>
</head>
<body>

<button class="btn1">Click me!</button>

<div class="content"></div>

</body>
</html>

编辑: 控制台打印如下:

XMLHttpRequest无法加载文件:/// C:/Users/yc/Desktop/jquery%20ajax%20testing/jquery-
ui-1.10.2.custom/jquery-ui-1.10.2.custom/abc.txt。Access-Control-Allow-
Origin不允许使用Origin null。

*它也不适用于Firefox,IE。


阅读 432

收藏
2020-07-26

共1个答案

小编典典

这不是错误,它是一种安全功能,您无法/不会在客户端计算机上使用它。

在chrome中,您可以通过在命令行上添加以下标志来禁用它

--disable-web-security

Firefox可能有类似的东西,但我不知道。这仅对开发有用,您不能在应用程序中依赖此行为。

您真的应该只使用服务器…

2020-07-26