首页 > 代码库 > js根据ip地址获取所在城市
js根据ip地址获取所在城市
话不多说,直接贴代码!
将这段代码运行一下就OK了:
<html xmlns="">
<head runat="server">
<title>根据IP地址获取所在城市</title>
<scriptsrc=http://www.mamicode.com/"?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=http://www.mamicode.com/"根据IP地址获取所在城市" onclick="getIpPlace();"/>
</div>
</form>
</body>
</html>
所用接口:
?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地址获取所在城市
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。