使用 HTML 中的 onending 屬性在媒體到達 HTML 結尾時執行腳本。您可以添加“感謝您觀看”、“敬請關注!”等訊息。
您可以嘗試執行下列指令實作onend屬性的程式碼 -
<!DOCTYPE HTML> <html> <body> <video width = "300" height = "200" controls onended = "display()"> <source src = "/html5/foo.ogg" type = "video/ogg" /> Your browser does not support the video element. </video> <script> function display() { alert ("Thank you for watching! Stay tuned!"); } </script> </body> </html>
以上是當媒體到達 HTML 末端時執行腳本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!