现在的位置: 首页 > 综合 > 正文

腾讯的ip接口 方便获取当前用户的ip地理位置

2013年05月27日 ⁄ 综合 ⁄ 共 395字 ⁄ 字号 评论关闭

腾讯的ip接口地址:http://fw.qq.com/ipaddress

显IP代码
全部调用

复制代码 代码如下:
<script type=text/javascript src=http://fw.qq.com/ipaddress></script>
<script type=text/javascript>
document.write(IPData.join(‘ ‘));
</script>

效果:xxx.xxx.xxx.xxx 某某省 某某市

只调用地理位置

复制代码 代码如下:
<script type=text/javascript src=http://fw.qq.com/ipaddress></script>
<script type=text/javascript>
document.write(IPData[2]);document.write(IPData[3]);
</script>

效果:某某省 某某市

抱歉!评论已关闭.