运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <body> <p>Click the button to create an AUDIO element with controls that will play a sound in a .mp3 or .ogg file format (depending on browser support).</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var x = document.createElement("AUDIO"); if (x.canPlayType("audio/mpeg")) { x.setAttribute("src","horse.mp3"); } else { x.setAttribute("src","horse.ogg"); } x.setAttribute("controls", "controls"); document.body.appendChild(x); } </script> </body> </html>