专注前端素材!
源代码:
点击运行
<!DOCTYPE html> <html> <body> <p>该实例演示了如何使用 HTML DOM 向 audio 元素添加 "onseeking" 事件。</p> <p>移动音频到新的播放位置。</p> <audio controls onseeking="myFunction()"> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg"> 您的浏览器不支持 audio 元素。 </audio> <script> function myFunction() { alert("寻址操作完成!"); } </script> </body> </html>
运行结果