私の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>
誰かが私が間違っていた場所を教えてもらえますか?どうもありがとうございます