Sử dụng tính năng phát trực tuyến để cho người dùng biết rằng âm thanh / video đã bắt đầu phát.
Ví dụ
Bạn có thể thử chạy đoạn mã sau để tìm hiểu cách thực thi tập lệnh khi phương tiện đã bắt đầu phát -
<!DOCTYPE html> <html> <body> <video id = "myid" width = "350" height = "200" controls onplaying = "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 started playing!"); } </script> </body> </html>