我正在尝试通过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
});
}
在此先感谢 - 任何帮助将不胜感激。