我有 4 个 Jquery 选项卡,每个选项卡中有 2 个视频。我如何同时播放一个视频并暂停所有其他视频?以及当我切换到新标签时如何让视频暂停?
这是代码Jsfiddle
/* play one video at a time */
$('video').bind('play', function() {
activated = this;
$('video').each(function() {
if(this != activated) {
this.pause();
}
});
});
/* get the active tab */
var active = $( "#issuestabs" ).tabs( "option", "active" );
/* pause all videos that are not in the active tab*/
if (!active) {
$("video").each(function(){
$(this).get(0).pause();
});
}
谁能告诉我有什么问题?
谢谢!