x
 
<!DOCTYPE html>
<html>
<body>
<p>单击按钮可创建一个 VIDEO 元素,一个将自动播放设置为 true,一个将自动播放设置为 false。</p>
<button onclick="myFunction(true)">影片自动播放的</button>
<button onclick="myFunction(false)">影片不自动播放</button>
<br>
<script>
function myFunction(p) {
  var x = document.createElement("VIDEO");
  x.setAttribute("id", "myVideo");
  x.setAttribute("width", "640");
  x.setAttribute("controls", "controls");
  var y = document.createElement("SOURCE");
  y.setAttribute("src", "/i/video/shanghai.mp4");
  y.setAttribute("type", "video/mp4");
  x.appendChild(y);
  // 设置 autoplay 属性:
  x.autoplay = p;
  document.body.appendChild(x);
}
</script>
</body>
</html>