我想用 maxmind javascript 获取用户的 ip、位置、城市、国家等,但我得到了 null,我有什么错误吗?
我还有一个问题,我可以将 maxmind javascript 放到我的插件中以无限使用吗?
我的javascript在这里:
<script src="http://j.maxmind.com/app/geoip.js"></script>
<script>
$("#country").html(document.write(geoip_country_code()));
$("#countryname").html(document.write(geoip_country_name()));
$("#city").html(document.write(geoip_city()));
$("#region").html(document.write(geoip_region()));
$("#regionname").html(document.write(geoip_region_name()));
</script>
此处的 HTML
<div id="country"> </div>
<div id="countryname"> </div>
<div id="city"> </div>
<div id="region"> </div>
<div id="regionname"> </div>