代码编辑器:
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><br>
6
<button onclick="enableLoop()" type="button">允许循环播放</button>
7
<button onclick="disableLoop()" type="button">禁止循环播放</button>
8
<button onclick="checkLoop()" type="button">检查循环状态</button>
9
<script>
10
var x = document.getElementById("myAudio");
11
function enableLoop(){
12
x.loop = true;
13
x.load();
14
}
15
function disableLoop(){
16
x.loop = false;
17
x.load();
18
}