简单教程
提交运行
代码编辑器:
<audio id="myAudio" controls muted> <source src="/static/i/html/horse.ogg" type="audio/ogg"> <source src="/static/i/html/horse.mp3" type="audio/mpeg"> 您的浏览器不支持 audio 元素。 </audio><br> <p>点击按钮查看是否静音</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myAudio").muted; document.getElementById("demo").innerHTML = x; } </script>
运行结果: