js获取客户端IP及地理位置

为君一笑 提交于 2019-12-24 06:25:06

js获取

DEMO:http://blog.suiyidian.cn/texiao/ipd.html

腾讯的IP地址API接口地址:http://fw.qq.com/ipaddress
返回的是数据格式为:var IPData = new Array(“114.218.183.139″,”",”北京市”);
使用JS代码进行调取:

[javascript] view plain copy
 
 print?
  1. <script language="javascript" type="text/javascript" src="http://fw.qq.com/ipaddress">  
  2. </script>    
  3.  <script>document.write("你的IP是:"+IPData[0]+",来自:"+IPData[2]);  
  4. </script>   


腾讯IP,转UTF-8:

[javascript] view plain copy
 
 print?
  1. <script type="text/javascript" src="http://fw.qq.com/ipaddress" charset="gb2312"></script>  
  2.   
  3. $(document).ready(function() {  
  4.   
  5.     $("#ip").val(IPData[0]);  
  6.     $("#add").val(IPData[2]);  
  7. })  


 

 

其它获取方法:

新浪的IP地址查询接口:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js
新浪多地域测试方法:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js&ip=12.130.132.30
搜狐IP地址查询接口(默认GBK):http://pv.sohu.com/cityjson
搜狐IP地址查询接口(可设置编码):http://pv.sohu.com/cityjson?ie=utf-8
搜狐另外的IP地址查询接口:http://txt.go.sohu.com/ip/soip

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!