根据Same Origin Policy,SOP 不应该适用于 file:// 协议,但为什么我的代码不起作用?我正在从我的本地系统运行这个测试页面,并且我在与 html 页面相同的目录中有 abc.txt。如果我将 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 无法加载 file:///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。