此简单代码适用于Chrome(显示您的IP)但不在Firefox中返回以下错误:
"发生错误:404错误"。
<script>$(document).ready(function()
{
$.ajaxSetup({cache: false});
$.ajax({
url: "https://freegeoip.net/json/",
dataType: "JSONP",
error: function(xhr)
{
console.log("An error occured: " + xhr.status + " " + xhr.statusText);
},
success: function(data)
{
console.log(data.ip);
}
});
});
</script>
这里是小提琴:https://jsfiddle.net/7ayo52Lx/5/
感谢任何帮助。
答案 0 :(得分:1)
好的,我发现了我的愚蠢错误,也许会帮助别人:我的addblocker阻止了请求。
案件解决了。