当 HTML 中加载媒体数据时执行脚本?
使用 onloaddata 事件在加载媒体数据时执行脚本。你可以尝试运行以下代码来实现 onloaddata 事件 −
示例
当视频加载完成时,以下代码会生成一个警告框 −
<!DOCTYPE html> <html> <body> <video controls onloadeddata = "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("Loaded!"); } </script> </body> </html>
广告