按用户的位置重定向用户,而不是按浏览器语言重定向

时间:2014-04-10 14:45:18

标签: javascript jquery html redirect

我正在为一家公司建立一个网站。我有3种语言:英语,挪威语和冰岛语。我发现了javascripts,用浏览器的语言重定向用户。有什么方法可以根据用户的位置进行重定向吗? (比如在mtv.com网站上)。谢谢!

3 个答案:

答案 0 :(得分:0)

抓住这个图书馆http://www.localeplanet.com/

你甚至可以在有/无jQuery的情况下使用i18n

答案 1 :(得分:0)

您可以使用地理定位,例如使用GeoDirection(不需要jQuery)。

以下是您可以做的一个示例:

<script language="Javascript" src="http://gd.geobytes.com/gd?after=-1&variables=GeobytesLocationCode,GeobytesCode,GeobytesInternet"></script>
<script language="Javascript">
if(typeof(sGeobytesLocationCode)=="undefined"
   ||typeof(sGeobytesCode)=="undefined"
   ||typeof(sGeobytesInternet)=="undefined")
{
   // Something has gone wrong with the variables, so set them to some default value,
   // maybe set a error flag to check for later on.
   var sGeobytesLocationCode="unknown";
   var sGeobytesCode="unknown";
   var sGeobytesInternet="unknown";
}
if(sGeobytesLocationCode=="CAQCMONT")
{
   // Visitors from Montreal would go here
   window.open("enter Montreal URL here");
}else if(sGeobytesCode=="QC")
{
   // Visitors from Quebec would go here
   window.open("enter Quebec URL here");
}else if(sGeobytesInternet=="CA")
{
   // Visitors from Canada would go here
   window.open("enter Canada URL here");
}
</script>

答案 2 :(得分:0)

我还可以在Reverse Geocoding的帮助下向您提出Google Geocoding API。它允许您获得有关用户本地化的大量信息,例如国家/地区。在某些情况下,您可以将用户重定向到正确的页面。