如何根据国家/地区代码重定向?

时间:2016-10-05 16:46:27

标签: javascript jquery ip

我有脚本,我从服务器获取客户端信息,所以我得到国家代码,如" 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

,则为

有可能实现我想要的目标吗?

0 个答案:

没有答案