简单教程
提交运行
代码编辑器:
<p>演示了如何向 audio 元素添加 "onended" 事件</p> <p>按下播放按钮,等待音频播放结束</p> <audio controls onended="myFunction()"> <source src="/static/i/html/horse.ogg" type="audio/ogg"> <source src="/static/i/html/horse.mp3" type="audio/mpeg"> 您的浏览器不支持 audio 元素。 </audio> <script> function myFunction() { alert("音频播放结束"); } </script>
运行结果: