経由で Youtube からデータを取得しようとしていJSON
ます。このコードは Chrome では問題なく動作しますが、Firefox では動作しません。私のコードは次のとおりです。
function test(url){
var youtube_id = url.replace(/^[^v]+v.(.{11}).*/,"$1");
var video_id= youtube_id;
$.get('http://gdata.youtube.com/feeds/api/videos/'+video_id+'?v=2&alt=json', function(data) {
var title = data.entry.title.$t;
var description = data.entry.media$group.media$description.$t;
var thumbnail = data.entry.media$group.media$thumbnail[0].url; // URL of the image
document.writeln(thumbnail);
document.writeln(description);// Use these variables somewhere
});
}
事前に感謝します-どんな助けでも大歓迎です。