ウェブページで再生された最後の10曲を表示します。ここでは私が使用しているコードがありますが、jsonファイルから要求された情報を取得して表示することができません。 https://jsfiddle.net/Heropiggy95/6qkv7z3b/誰かがエラーを指摘したり、実例を示すことができますか?ありがとうございました。ウェブページのjsonデータを解析するのに役立つ必要があります
$(document).ready(function() {
$.getJSON("http://apps.radioactive.sg/lastsongsplayed.php?stationId=995fm&callback=myfunction", function(data) {
var html = ''; // declare the variable that will be used to store the information
$.each(data.myfunction, function(i, item) {
{
html += 'Song: ' + item.song.track + ', Artist: ' + item.song.artist + ', Time: ' + item.playedtime + '';
} //
}); //
$('.nowplaying').append(html); // print the information to the document with a span class of 'nowplaying' and use the jQuery append method to insert the information.
}); // close JSON call
}); // close document ready function
ようJSON.parseをそのない使用してみてください。詳細を記入してください。 – C4u