代码:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>PHP中文网</title> </head> <body> <p></p> <script src="http://www.jq22.com/jquery/jquery-2.1.1.js"></script> <script type="text/javascript"> $.getScript('http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js', function(_result) { if (remote_ip_info.ret == '1') { $("p").text('国家:' + remote_ip_info.country +'\n'+'省:' + remote_ip_info.province +'\n'+'市:' + remote_ip_info.city +'\n'+'区:' + remote_ip_info.district + +'\n'+'ISP:' + remote_ip_info.isp +'\n'+'类型:' + remote_ip_info.type + +'\n'+'其他:' + remote_ip_info.desc); } else { alert('没有找到匹配的IP地址信息!') } }); </script> </script> </body> </html>
免费拿去研究吧!更多好的源码尽在PHP中文网,关注我们给你好看哦~
相关推荐:
以上就是jquery实现通过ip获取地址的详细内容,更多请关注php中文网其它相关文章!
……