简单教程
提交运行
代码编辑器:
<p>演示了如何向 audio 元素添加 "onplaying" 事件</p> <p>尝试播放,暂停然后再次播放视频</p> <audio controls onplaying="myFunction()"> <source src="/static/i/html/horse.ogg" type="audio/ogg"> <source src="/static/i/html/horse.mp3" type="audio/mpeg"> 您的浏览器不支持 HTML5 video。 </audio> <script> function myFunction() { alert("视频正在播放"); } </script>
运行结果: