单击“链接”时,替换gdata播放列表供稿中的播放列表ID

时间:2013-08-12 05:28:52

标签: javascript html javascript-events

我使用gdata播放列表Feed来抓取播放列表中的所有视频,以便在我的网站上显示。 这是使用gdata播放列表feed的javascript函数。我想在点击链接时将播放列表ID替换为另一个播放列表ID,以便视频也被替换。

$(function() {
$('#ytVideoGallery').ytVideoGallery({
    feedUrl: 'http://gdata.youtube.com/feeds/api/playlists/9EA41FFD2282B969',
       playerOptions: {
        rel: '0',
        wmode: 'opaque'
       },
      playerWidth: 640,
      playerHeight: 360
   }); 
});

1 个答案:

答案 0 :(得分:0)

您可以将选项保存到var。

   var options = {
    feedUrl: 'http://gdata.youtube.com/feeds/api/playlists/9EA41FFD2282B969',
       playerOptions: {
        rel: '0',
        wmode: 'opaque'
       },
      playerWidth: 640,
      playerHeight: 360
   };

$(function() {
  $('#ytVideoGallery').ytVideoGallery(options);
});

点击后你可以将它附加到另一个元素:

$("#some_element").click(function(){
  $(this).ytVideoGallery(options);
  $('#ytVideoGallery').remove(); // You can remove previous element.
});