记录日常点点滴滴,欢迎来到我的小站。

0%

javascript 通过geoip.js来获得用户IP及所在地信息

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript" src="http://j.maxmind.com/app/geoip.js"></script>
</head>

<body>
<script type="text/javascript">
var area = "";
try
{
if(geoip_country_code() != "" && geoip_country_code() != null)
area += geoip_country_code()+", ";
if(geoip_city() != "" && geoip_city() != null)
area += geoip_city()+", ";
if(geoip_region_name() != "" && geoip_region_name() != null)
area += geoip_region_name()+", ";
if(geoip_country_name() != "" && geoip_country_name() != null)
area += geoip_country_name();

document.write(area);
}
catch(err)
{
area="";
}
</script>
</body>
</html>

通过maxmind.com公司提供的iP数据库接口,可以查询当前客户机的IP所在地。

缺点是不能查询指定IP。