我有以下代码。我用它从另一个域地址获取一些数据。在我的本地网络中。如果有人能告诉我我在这里做错了什么或给我解决方案。
<html>
<title>Jquery Json</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(document).ready(function($){
$.ajax({ // ajax call starts
type:"GET",
async: false,
cache: false,
contentType: "application/json; charset=utf-8",
crossDomain: true,
//url: "http://10.1.128.107/JsonDohaBackToTemplate/getProjectIDByMAC.svc/media/?projectid=1",
url: "http://fantasy.premierleague.com/web/api/elements/415/?_=1357337284504",
success: function(data) {
$("body").append(JSON.stringify(data));
},
error: function(jqXHR, textStatus, errorThrown) {
alert(jqXHR.status);
},
dataType: "jsonp"
});
});
</script>
</head>
<body>
</body>
</html>