运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <body> <p>Click the button to create a VIDEO element with controls that will play a movie 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("VIDEO"); if (x.canPlayType("video/mp4")) { x.setAttribute("src","movie.mp4"); } else { x.setAttribute("src","movie.ogg"); } x.setAttribute("width", "320"); x.setAttribute("height", "240"); x.setAttribute("controls", "controls"); document.body.appendChild(x); } </script> </body> </html>