欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

jquery实现通过ip获取地址

程序员文章站 2022-05-26 21:19:50
...
一个用jquery实现的简单的通过用户ip获取地址的小应用,免费提供源码~~

jquery实现通过ip获取地址

代码:

<!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中文网,关注我们给你好看哦~

相关推荐:

css 、jquery实现3d立体旋转

jquery实现手势解锁源码

原生js实现可移动的提示div框源码

以上就是jquery实现通过ip获取地址的详细内容,更多请关注其它相关文章!