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

5 篇文章 0 订阅

 php获取方法:

  1. 1.<?php     
  2. 2.function get_ip_place(){     
  3. 3.$ip=file_get_contents("http://fw.qq.com/ipaddress");     
  4. 4.$ip=str_replace('"',' ',$ip);     
  5. 5.$ip2=explode("(",$ip);     
  6. 6.$a=substr($ip2[1],0,-2);     
  7. 7.$b=explode(",",$a);     
  8. 8.return $b;     
  9. 9.}     
  10. 10.$ip=get_ip_place();     
  11. 11.print_r($ip);     
  12. 12.?>    
1.<?php   
2.function get_ip_place(){   
3.$ip=file_get_contents("http://fw.qq.com/ipaddress");   
4.$ip=str_replace('"',' ',$ip);   
5.$ip2=explode("(",$ip);   
6.$a=substr($ip2[1],0,-2);   
7.$b=explode(",",$a);   
8.return $b;   
9.}   
10.$ip=get_ip_place();   
11.print_r($ip);   
12.?>  


 

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>   
<script language="javascript" type="text/javascript" src="http://fw.qq.com/ipaddress">
</script>  
 <script>document.write("你的IP是:"+IPData[0]+",来自:"+IPData[2]);
</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. })  
<script type="text/javascript" src="http://fw.qq.com/ipaddress" charset="gb2312"></script>

$(document).ready(function() {

	$("#ip").val(IPData[0]);
	$("#add").val(IPData[2]);
})


 

 

其它获取方法:

新浪的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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值