点击javascript从视频中删除自动播放

时间:2012-11-30 08:50:31

标签: javascript jquery youtube-api

我使用以下代码将自动播放添加到iframe视频onclick。

HTML:

<span id="stoprotate"></span><iframe src="http://www.youtube.com/embed/TJ2X4dFhAC0?wmode=transparent"  frameborder="0" class="slide" allowtransparency="true" id="video" wmode="opaque"></iframe>

脚本:

$(document).on('click','#video',function(e){ 

$(".roundabout-in-focus #video")[0].src += "&autoplay=1";
  $(this).unbind("click");

})

<a href="#">Stop auto play</a>

我需要remove autoplay点击停止自动播放链接。怎么做?

1 个答案:

答案 0 :(得分:0)

更改我的回答:P尝试使用全局变量保存网址,然后在单击

时重复使用它
var gurl;
$(document).on('click','#video',function(e){
    gurl =  $(".roundabout-in-focus #video")[0].src;
    $(".roundabout-in-focus #video")[0].src += "&autoplay=1";
    $(this).unbind("click");
});

我写了一个样本:
http://ohcool.org/sof/13641740.html