当我直接在浏览器的地址栏中发布 ajax url 时,我使用 ajax 从远程服务器检索数据,我正在获取数据,但是当我在 javascript 文件中对该 url 进行 ajax 调用时,它显示错误。我在这里粘贴我的代码。
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$.ajax({
url:"http://www.appitechture.com/api/index.php?action=getContactDetails&id=96",
type:'get',
datatype:'json',
success:function OnSuccess(data , status){
alert(data);
} ,
error: function OnError(request , status , error){
alert('error');
}
});
</script>
</head>
<body>
<div id="images"></div>
</body>
</html>
所以如果有人知道它的解决方案,请告诉我。
谢谢 puneet