0

我把它都放在这里: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>

我有什么想法吗?

4

1 回答 1

0

这应该有效:

http://jsfiddle.net/pKZPP/

于 2011-08-21T20:34:25.697 回答