fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> <p>点击按钮创建 VIDEO 元素,将播放 .ogg 文件格式的视频。</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script> function myFunction(){ var x = document.createElement("VIDEO"); x.setAttribute("width", "320"); x.setAttribute("height", "240"); x.setAttribute("controls", "controls"); x.setAttribute("src", "movie.ogg"); document.body.appendChild(x); document.getElementById("demo").innerHTML = "<strong>注意:</strong>IE 和 Safari 浏览器不支持 .ogg 文件格式。这边只是个简单的示例。"; } </script> </body> </html>
运行结果