我正在尝试通过 maxmind javascript检索国家代码但返回 null 为什么?**想按国家代码获取时区。**
一旦我得到国家代码,我想实施它。我在这里得到了时区数据。但是javascript返回null
https://github.com/maxromanovsky/php-maxmind-geoip/blob/master/timezone/timezone.php
<script src="http://j.maxmind.com/app/geoip.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
$("#country").html( 'Country: ' + geoip_country_code() );
<?php $country = geoip_country_code(); ?>
</script>
<div id="country"></div>