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.
有没有办法在不使用的情况下停止 HTML5 视频pause()?
pause()
我不想停止视频,pause()因为我触发了我的暂停事件处理程序。设置currentTime为视频结束也不是解决方案,因为这也会触发事件的自定义事件处理ended。
currentTime
ended
[在问题中添加了我的评论作为答案] 一个简单但不是最好的解决方案是创建一个变量并签入自定义处理程序。
var triggerPause = true; function customPauseHandler(e) { if (!triggerPause) return; ... }