Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将视频暂停 2 或 3 秒并继续使用 jQuery 播放?
setTimeout(function(){ $('yourVideoElementSelector')[0].play(); },2000);
你的意思是每次机会都这样吗?
或者你的意思是暂停播放视频?
$('yourselector')[0].pause(); setTimeout(function(){ $('yourselector')[0].play();}, 2000);