
使用oncanplay 属性定义音频/视频何时准备好开始播放。
示例
您可以尝试运行以下代码来了解如何在媒体准备开始播放时执行脚本 -
<!DOCTYPE html>
<html>
<body>
<video id = "myid" width = "320" height = "176" controls oncanplay="display()">
<source src = "/html5/foo.ogg" type = "video/ogg" />
<source src ="/html5/foo.mp4" type = "video/mp4" />
Your browser does not support the video element.
</video>
<script>
function display() {
alert("Video loaded!");
}
</script>
</body>
</html>











