代码编辑器:
x
1
<audio id="myAudio" controls>
2
<source src="/static/i/html/horse.ogg" type="audio/ogg">
3
<source src="/static/i/html/horse.mp3" type="audio/mpeg">
4
您的浏览器不支持 audio 元素。
5
</audio>
6
<p>点击获取音频第一部分的缓冲区间</p>
7
<p id="demo"></p>
8
<button onclick="myFunction()">点我</button>
9
<script>
10
function myFunction(){
11
var x = document.getElementById("myAudio");
12
document.getElementById("demo").innerHTML = "开始: " + x.buffered.start(0) + " 结束: " + x.buffered.end(0);
13
}
14
</script>
15