码迷,mamicode.com
首页 > Web开发 > 详细

js通过IP地址获取所在城市

时间:2015-01-09 17:30:17      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:ip

话不多说,直接贴代码!
将这段代码运行一下就OK了:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
   <title>根据IP地址获取所在城市</title>
   <scriptsrc="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>
   <form id="form1"runat="server">
   <div>
       <input id="Button1" type="button"value="根据IP地址获取所在城市" onclick="getIpPlace();"/>
   </div>
   </form>
</body>
</html>


所用接口:

http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js

返回结果:

var remote_ip_info = {"ret":1,"start":"1.192.0.0","end":"1.193.127.255","country":"\u4e2d\u56fd","province":"\u6cb3\u5357","city":"\u90d1\u5dde","district":"","isp":"\u7535\u4fe1","type":"","desc":""};


country:国家

province:省份

city:城市

isp:所用网络(例如电信)

js通过IP地址获取所在城市

标签:ip

原文地址:http://blog.csdn.net/s592652578/article/details/42555891

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!