我使用JSONP訪問json頁面(通過jQuery)。我有一個HTML按鈕無法使用JSONP訪問json頁面
<input type="button" value="Récupérer les données" onclick="getInfo();" />
我的代碼
function getInfo() {
$.ajax({
dataType:'jsonp',
url: 'http://89.92.40.250:8010/dreamteam/interface/get_event_detail.php?id=106',
data: { param:'event' },
success:function(response) {
alert("Réponse : "+ response.data);
}
});
};
警告不起作用......
首先,它實際上是你收到的JSONP嗎? – Joseph
這是JSON,你可以嘗試:http://89.92.40.250:8010/dreamteam/interface/get_event_detail.php?id=106 – geekInside
我認爲ajax不允許從外部URL獲取數據 – mgraph