我剛從lastfm和json開始。我可以得到我想要在控制檯中返回對象值的信息,但我無法弄清楚爲什麼我總是得到「undefined」的值。這是我所有的代碼。謝謝!lastfm JSON對象返回「undefined」
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html>
<head>
<title>JSON LastFM API Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$.getJSON("http://ws.audioscrobbler.com/2.0/?method=artist.getInfo&artist=Bjork&api_key=690e1ed3bc00bc91804cd8f7fe5ed6d4&format=json&callback=?", function(data) {
var html = '';
$.each(data.artist, function(i, item) {
html += "<p>" + item.name + "</p>";
console.log(data);
});
$('#test').append(html);
});
</script>
<div id="test"></div>
</body>
@ZeeTee那應該不重要。 – alex 2012-02-13 04:50:10