使用 HTML 中的 onending 屬性在媒體到達(dá) HTML 結(jié)尾時(shí)執(zhí)行腳本。您可以添加“感謝您觀看”、“敬請(qǐng)關(guān)注!”等消息。
示例
您可以嘗試運(yùn)行以下命令實(shí)現(xiàn)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>
登錄后復(fù)制
以上就是當(dāng)媒體到達(dá) HTML 末尾時(shí)執(zhí)行腳本?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!