0

我的 XML 文件:

<?xml version="1.0"?>
 <xml>
  <weather>
   <location>Wonderland</location>
   <temp>20</temp>
  </weather>
 </xml>

我的JavaScript:

<script type="text/javascript">
// <![CDATA[
$(document).ready(function(){

 $.ajax({

  type: "GET",

  url: "https://..../Weather.php",

  dataType: "xml",

   success: function(xml) {

    $(xml).find('weather').each(function(){

     var location = $(this).find("location").text();

     var temp = $(this).find("temp").text();

     $("#footer").append(temp+location);

      });

     }

     });

   });

  // ]]>

 </script>


有人可以告诉我我哪里错了吗?非常感谢

4

1 回答 1

1

你可以看看Origin http://localhost is not allowed by Access-Control-Allow-Origin.? - 您可能会遇到跨域问题。

于 2012-10-02T11:40:39.077 回答