在 HTML 中使用 onended 属性在 HTML 中媒体播放结束时执行脚本。您可以添加诸如“感谢观看”、“敬请期待!”等消息。示例您可以尝试运行以下代码来实现 onended 属性 - Your browser does not support the video element. function display() { alert ("感谢观看!敬请期待!"); }
在 HTML 中使用 onemptied 属性在 HTML 中文件不可用或为空时执行脚本。示例您可以尝试运行以下代码来实现 onemptied 属性 - Your browser does not support the video element. function display() { alert ("抱歉!播放列表为空!"); }