JSONP を使用して (jQuery 経由で) json ページにアクセスします。私はhtmlボタンを持っています
<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);
}
});
};
アラートが機能しない...