我设法让访问该网站的人所在的国家/地区:
<script type='text/javascript'>
$(window).load(function(){
$.getJSON('http://api.wipmania.com/jsonp?callback=?', function (data) {
$("#hello").html(
'Country: ' + data.address.country);
});
});
</script>
<p id="hello"></p>
现在我正在努力的是我有一个基本链接
<a href="http://www.google.com" id="global">Google</a>
我想根据位置更改网址的扩展名,例如
if data.address.country = Australia change "www.google.com" to "www.google.com.au"
or if data.address.country = New Zealand change "www.google.com" to "www.google.co.nz"
or if data.address.country = Any thing else leave it as is "www.google.com"
我知道这不是真正的代码,但希望它足够清楚,您知道我来自哪里,可能使代码通用,以便我将来可以添加其他位置。