我使用以下代码将自动播放添加到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
点击停止自动播放链接。怎么做?
答案 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