ajax
我从下面的 jQuery 收到 JSONP 跨域请求的响应
$.ajax({
url: "http://ipinfo.io/{/literal}{$smarty.server.REMOTE_ADDR}{literal}/json",
dataType: 'jsonp',
async: true,
cache: false,
contentType: "text/json; charset=utf-8",
crossDomain: true,
success: function(response){
$("#apply_modal").modal({
remote: load_url
});
},
error: function(err){
console.log(err);
}
});
这似乎在 IE10 中根本不起作用,但适用于所有其他浏览器。
此外,当我打开DebugBar
它再次工作。
我不明白为什么。上面的javascript没有错误
会是什么问题?