根据IP地址获取所在城市[下载][下载]

根据IP地址获取所在城市

有这样的需求,需要根据用户的IP地址,定位用户所在的城市。

本文记录性文章,无逻辑性。有这样需求的朋友,可以直接拷贝使用。直接上代码,

代码演示

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>根据IP地址获取所在城市</title>
<script src="http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js" type="text/ecmascript"></script>
<script type="text/javascript">
	function getIpPlace() {
		alert(remote_ip_info["province"] + "省" + ',' + remote_ip_info["city"] + "市")
	} 
</script>
</head>
<body>
<input id="Button1" type="button" value="根据IP地址获取所在城市" onClick="getIpPlace();" />
</body>
</html>

下载地址

根据IP地址获取所在城市打包下载.zip
445B