我希望能够根据用户查看网站的位置更改图像?或者将它们导航到另一个页面。
理想情况下,我想使用 jquery 来解决这个问题,但我不能 100% 确定这是否有效。
例如,如果用户从伦敦访问该站点,我想换一个不同的图像。我们可以针对特定地区吗?
谢谢阿娇
刚刚在beda0805的帮助下让它工作
这是解决方案
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Location</title>
<script type='text/javascript' src='//code.jquery.com/jquery-1.9.1.js'></script>
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){
$.get("http://ipinfo.io", function (response) {
if(response.region == 'London'){
$("#address").append("<p>Your in London</p>");
}
if(response.region != 'London'){
$("#address").append("<p>Your anywhere else</p>");
}
}, "jsonp");
</script>
</head>
<body>
<div id="address"></div>
</body>
</html>