通过jquery 获取用户当前所在的城市名称和IP地址
下面这段JS代码是通过jquery 结合新浪IP地址库和QQip地址库接口获取用户当前所在的城市(省份)名称、 用户当前IP地址等数据。其中当前IP是通过 QQip地址库接口获取,其他数据都是通过 新浪IP地址库接口获取。因为 QQip地址库速度较慢,所以IP地址经常会无法显示出来,要多刷新几次。获取到的这些数据具体作用可以结合自己的网站所需功能来用,本人主要是想通过获取到当前城市名称来调用新浪天气预报的当前城市天气预报信息,如:《jquery 天气预报代码》
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>MJBlog(mj.588cy.com)</title> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ //通过调用新浪IP地址库接口查询用户当前所在国家、省份、城市、运营商信息 $.getScript(‘http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js‘,function(){ $(".country").html(remote_ip_info.country); $(".province").html(remote_ip_info.province); $(".city").html(remote_ip_info.city); $(".isp").html(remote_ip_info.isp); }); //通过调用QQIP地址库接口查询本机当前的IP地址 $.getScript(‘http://fw.qq.com/ipaddress‘,function(){ $(".ip").html(IPData[0]); }); }); </script> </head> <body> <div>国家:<span class="country"></span></div> <div>省份:<span class="province"></span></div> <div>城市:<span class="city"></span></div> <div>IP地址:<span class="ip"></span></div> <div>运营商:<span class="isp"></span></div> </body> </html>
转自http://mj.588cy.com/jquery/10.html
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。