来自 3 个国家(新西兰、斐济或印度)的访问者分别需要不同的内容页面。该网站是用 PHP 编写的,内容在 HTML 文件中,可以包含在内。我是新手;请耐心等待!!
问问题
477 次
2 回答
1
使用 Google 的 AJAX API 加载器很容易粗略估计用户的位置。大致:
<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
// Note that you should have some sanity checks here, and maybe use an onLoad
// event of some kind
alert(google.loader.ClientLocation.address.country);
</script>
您可以让用户从一个页面开始,然后使用 JavaScript 将他们重定向到适当的位置。如果你正在使用任何流行的 JavaScript 库,你可能已经在使用这个加载器(如果没有,你应该考虑通过它来加载你的库)。
http://code.google.com/apis/ajax/documentation/#ClientLocation
于 2010-04-22T02:17:10.967 回答
0
- 获取访客的
IP
- 映射
IP
到它的location
include
根据位置做一个条件
于 2010-04-22T02:09:39.900 回答