我使用 JSONP 访问 json 页面(通过 jQuery)。我有一个 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);
}
});
};
警报不起作用...