0

如何将视频暂停 2 或 3 秒并继续使用 jQuery 播放?

4

1 回答 1

0
setTimeout(function(){
$('yourVideoElementSelector')[0].play();
},2000);

你的意思是每次机会都这样吗?

或者你的意思是暂停播放视频?

$('yourselector')[0].pause();
setTimeout(function(){ $('yourselector')[0].play();}, 2000);
于 2013-04-12T22:02:20.547 回答