脚本在localhost上工作,但在服务器上没有

时间:2016-03-22 22:25:17

标签: javascript jquery ajax

我有这个脚本

$.get("http://ipinfo.io", function (response) {
    $("#ip").html("" + response.ip);
    $("#address").html("Location: " + response.city + ", " + response.region);
    $("#details").html(JSON.stringify(response, null, 4));
}, "jsonp");
$.ajax({
    url: "http://ipinfo.io/json",
    success: function(response) {
        var pais = (response.country);
        if(pais=='BR') {
            //do something //
        }
    },
    dataType: 'json',
    statusCode: {
        429: function() {
            alert( "Number of tries exceeded" );
        }
    }
});

它应该获取用户的IP,它可以在localhost上运行但是当我将它上传到服务器时它无法正常工作.. 有什么建议吗?

0 个答案:

没有答案