JavaScript 参考手册
Video autoplay 属性
以下实例演示了如何创建 <video> 元素并设置 autoplay 属性
源代码:
点击运行 »
<p>点击按钮创建 VIDEO 元素,一个设置 autoplay 属性为 true, 另一个设置 autoplay 属性为 false。</p> <button onclick="myFunction(true)">Video 使用自动播放</button> <button onclick="myFunction(false)">Video 不使用自动播放</button> <br> <script> function myFunction(p) { var x = document.createElement("VIDEO"); x.setAttribute("id", "myVideo"); x.setAttribute("controls", "controls"); var y = document.createElement("SOURCE"); y.setAttribute("src", "/examples/movie.mp4"); y.setAttribute("type", "video/mp4"); x.appendChild(y); var z = document.createElement("SOURCE"); z.setAttribute("src", "/examples/movie.ogg"); z.setAttribute("type", "video/ogg"); x.appendChild(z); // 设置播放属性: x.autoplay = p; document.body.appendChild(x); } </script>
运行结果:
点击运行 »