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.
我想确保我的 HTML 5 视频在用户进入页面时从头开始运行。
目前,第一个视频运行良好,但如果用户在播放时关闭弹出窗口,视频将从用户再次打开弹出窗口时离开的位置开始。
尝试类似的东西
document.getElementById('vid').onload = function(){ this.currentTime = 0; };