<html>
<body>
<audio controls onprogress="myFunction()">
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
你的浏览器不支持 audio 元素。
</audio>
<script>
function myFunction() {
alert("下载音频");
}
</script>
</body>
</html>