Youtube API - 查询视频ID的JSON会加载空的嵌入式iframe

时间:2011-08-21 20:22:02

标签: javascript jquery json youtube-api json-c

我把它全部放在这里:http://jsfiddle.net/uJ3h7/

但我会在这里重新贴上标记:

$(document).ready(function(){
$.getJSON("http://gdata.youtube.com/feeds/api/users/MisterAngelMarino/favorites?v=2&alt=jsonc&max-results=1",function(json){
$.each(json.data, function(i,video){
var source = video.id
$("#video").append('<iframe width="560" height="349" src="http://www.youtube.com/embed/'+ source + '?html5=1&theme=dark&showinfo=0&modestbranding=1&controls=0" allowfullscreen></iframe>');    
    });
});
});



<div id="video"></div>

我有什么想法?

1 个答案:

答案 0 :(得分:0)

这应该有效:

http://jsfiddle.net/pKZPP/