我无法使用jQuery.support.cors = true; 行从下面的代码中打印成功;. 包括行jQuery.support.cors = true; 会给出警告信息。那么如何在不丢失功能的情况下避免这种情况呢?我的主要目标是调用一个返回 JSON 数据的 REST Web 服务,我必须利用 JSON 数据。请帮助我如何实现这一目标。请提供工作样本
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery.getJSON demo</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<script>
jQuery.support.cors = true;
$.ajax ({
url: 'http://json-cricket.appspot.com/score.json',
datatype: "json",
success: function (e) {
// Success callback
alert("sucess");
}})
</script>
</body>
</html>