简单教程
提交运行
代码编辑器:
<p>演示了如何使用 HTML DOM 向 video 元素添加 "oncanplaythrough" 事件</p> <video controls id="myVideo"> <source src="/static/i/html/html_video_2.mp4" type="video/mp4"> <source src="/static/i/html/html_video_2.ogg" type="video/ogg"> 您的浏览器不支持 HTML5 video 元素。 </video> <script> document.getElementById("myVideo").oncanplaythrough = function() {myFunction()}; function myFunction() { alert("无需停顿可直接播放视频"); } </script>
运行结果: