该代码尝试使用jQuery.ajax()进行跨域调用:
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
var request=$.ajax({
type: "GET",
url: "http://2.cinema-sderot.appspot.com/getSimpleJson",
dataType: "json",
crossDomain: true
});
request.done(function( msg ) {
$("div").append("Done");
});
request.fail(function( jqXHR, textStatus ) {
$("div").append("Request failed: " + textStatus);
});
});
</script>
</head>
<body>
<div></div>
</body>
</html>
即使 URL返回有效的 JSON,代码也会失败并显示消息Request failed: error
。我在 Firefox 和 Chrome 的控制台日志中都没有找到任何有用的信息。
知道有什么问题吗?