简单教程
提交运行
代码编辑器:
<audio id="myAudio" controls autoplay> <source src="/static/i/html/horse.ogg" type="audio/ogg"> <source src="/static/i/html/horse.mp3" type="audio/mpeg"> 您的浏览器不支持 audio 元素。 </audio> <p>查看音频在加载后是否设置了立即播放</p> <p id="demo"></p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var x = document.getElementById("myAudio").autoplay; document.getElementById("demo").innerHTML = x; } </script>
运行结果: