我这里测试的没问题,是不是浏览器兼容问题?
还有测试IE不行时,把IE关掉重开试一下,因为有时候当有浏览器错误时,它会阻止后面的响应。

解决方案 »

  1.   

    我是IE10测试的也可以,除了楼上说的,是不是浏览器设置什么的阻止了脚本运行,看下Internet选项,安全里的设置
      

  2.   

    浏览器 看看是否禁止了 javascript
      

  3.   

    <!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=gb2312" />
    <title>取得所在城市名1</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);
    document.getElementById("text1").value=remote_ip_info.city;
       $(".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" id="span1"></span></div>
    <!--<DIV>IP地址:<span class="ip"></span></DIV>-->
    <div>运营商:<span class="isp"></span></div>
    <input type="text" name="text1" id="text1" value=""></input>
    </body>
    </html>