代码编辑器:
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="enableMute()" type="button">禁用声音</button>
7
<button onclick="disableMute()" type="button">启用声音</button>
8
<button onclick="checkMute()" type="button">检查静音状态</button>
9
<script>
10
var x = document.getElementById("myAudio");
11
function enableMute(){
12
x.muted = true;
13
}
14
function disableMute(){
15
x.muted = false;
16
}
17
function checkMute(){
18
alert(x.muted);