使用AJAX调用google map api不起作用

时间:2010-08-28 13:35:41

标签: ajax google-maps

HELP !!以下代码不起作用!为什么呢?

 <html>
    <head>
    <script type="text/javascript">
    function loadXMLDoc()
    {
    if (window.XMLHttpRequest)
      {// code for IE7+, Firefox, Chrome, Opera, Safari
      alert("aa");
      xmlhttp=new XMLHttpRequest();
      }
    else
      {// code for IE6, IE5
      xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    xmlhttp.onreadystatechange=function()
      {
      if (xmlhttp.readyState==4 && xmlhttp.status==200)
        {
        document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
        }
      }
    xmlhttp.open("GET","http://maps.google.com/maps/geo?q=hangzhou",true);
    xmlhttp.send();
    }
    </script>
    </head>
    <body>

    <div id="myDiv"><h2>Let AJAX change this text</h2></div>
    <button type="button" onclick="loadXMLDoc()">Change Content</button>

    </body>
    </html>

1 个答案:

答案 0 :(得分:0)

嘿,最后我自己得到了答案,自从我开始使用stackoverflow以来,我发布了三个问题,除了我自己以外,其他人都没有回答过。嘿,stackoverflow的老板:你能想出一个新的奖励系统,所以人们更积极地回答问题吗?

简而言之,如果您的AJAX应用程序位于页面http://www.yourserver.com/junk.html中,那么来自该页面的任何XMLHttpRequest只能使用域www.yourserver.com向Web服务发出请求。

http://www.xml.com/pub/a/2005/11/09/fixing-ajax-xmlhttprequest-considered-harmful.html 有关详细信息。