运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <video id="myVideo" controls src="movie.ogg"> Your browser does not support the video tag. </video> <p>Click the button to change the URL of the video.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> var x = document.getElementById("myVideo"); function myFunction() { isSupp = x.canPlayType("video/mp4"); if (isSupp == "") { x.src = "mov_bbb.ogg"; } else { x.src = "mov_bbb.mp4"; } x.load(); document.getElementById("demo").innerHTML = "Video Courtesy of Big Buck Bunny - www.bigbuckbunny.org"; } </script> </body> </html>