编辑下面的代码:【加编码】
<html> <body> <audio id="myAudio" controls autoplay> <source src="/demo/horse.ogg" type="audio/ogg"> <source src="/demo/horse.mp3" type="audio/mpeg"> 您的浏览器不支持 audio 元素。 </source></source></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> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂