地理位置 - JS vs JSON

时间:2012-11-01 01:00:30

标签: javascript json geolocation jsonp geocoding

我尝试使用maxmind的免费服务获取用户浏览的地理位置 http://j.maxmind.com/app/geoip.js

jQuery.getScript('http://j.maxmind.com/app/geoip.js', function() 
{
    var country = geoip_city();
    console.log("Your location is: " + country);
});

但是,输出javascript代码而不是json似乎有点问题,因为它会从您控制之外的站点中删除代码。处理此类情景的最佳做法是什么?

1 个答案:

答案 0 :(得分:0)

这将显示用户的城市。

<script type="text/javascript" src="http://j.maxmind.com/app/geoip.js"></script>

<script type="text/javascript">
    document.write(geoip_city());
</script>