zoukankan      html  css  js  c++  java
  • 通过jquery 获取用户当前所在的城市名称和IP地址

         下面这段JS代码是通过jquery 结合新浪IP地址库和QQip地址库接口获取用户当前所在的城市(省份)名称、 用户当前IP地址等数据。其中当前IP是通过 QQip地址库接口获取,其他数据都是通过 新浪IP地址库接口获取。因为 QQip地址库速度较慢,所以IP地址经常会无法显示出来,要多刷新几次。获取到的这些数据具体作用可以结合自己的网站所需功能来用,本人主要是想通过获取到当前城市名称来调用新浪天气预报的当前城市天气预报信息,如:《jquery 天气预报代码》

    View Code
    <!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

  • 相关阅读:
    go语言Notepad++简易开发环境搭建(windows)
    openssl AES加密以及padding
    为什么数据库要读写分离
    关于查询服务器文件是否过期的分析
    linux 禁止指定账号ssh登陆
    libmemcached upcoming ISO C++ standard, C++0x
    keepalived安装配置(nginx)
    php连接mysql报错No such file or directory
    linux命令行下使用R语言绘图
    纯真IP数据库导入mysql
  • 原文地址:https://www.cnblogs.com/lucky_hu/p/3053459.html
Copyright © 2011-2022 走看看