下载本资源原文网址:http://www.daima.org/php/php7104.html 很实用的一个显示IP+地区的程序,使用起来非常方便! QQWry.Dat为纯真IP数据库 把IP文件夹放到网站根目录 把以下代码放到要显示的网页中即可!
<script> $(function(){ $.getJSON("/ip/ip.php?getip=v",function(data){ $("#guest_ip").html(data.ip); $("#guest_ipl").html(data.iplocation); }); }); </script>
<label for="ip" class="a">您的IP是:<span id="guest_ip" >loading...</label> <label for="ipl" class="a"> 欢迎来自:<span id="guest_ipl" >loading...</span>的网友光临本站,Win7部落因你而精彩!</label> |