我有脚本,我从服务器获取客户端信息,所以我得到国家代码,如" MX"和"美国":
<script>
$.get("http://ipinfo.io", function (response) {
$("#ip").html("IP: " + response.ip);
$("#address").html("Location: " + response.city + ", " + response.region);
$("#details").html(JSON.stringify(response, null, 4));
}, "jsonp");
</script>
所以我有两种不同语言的网页,我想根据收到的国家/地区代码更改网页。
例如:
如果country code = MX
重定向到index.html
如果country code = US
重定向到EngIndex.html
有可能实现我想要的目标吗?