<html>
<body>
<audio id="myAudio" controls>
<source src="/demo/horse.ogg" type="audio/ogg">
<source src="/demo/horse.mp3" type="audio/mpeg">
您的浏览器不支持 audio 元素。
</source></source></audio>
<p>点击按钮获得音频中以秒计的首段已播放的范围(部分)。</p>
<p id="demo"></p>
<button onclick="myFunction()">点我</button>
<script>
function myFunction()
{
var x = document.getElementById("myAudio");
document.getElementById("demo").innerHTML = "Start: " + x.played.start(0) + " End: " + x.played.end(0);
}
</script>
</body>
</html>