<!DOCTYPE html>
<html>
<body>
<p>单击按钮可创建一个 AUDIO 元素,一个按钮将自动播放设置为 true,一个按钮将自动播放设置为 false。</p>
<button onclick="myFunction(true)">自动播放音频</button>
<button onclick="myFunction(false)">不自动播放音频</button>
<br><br>
<script>
function myFunction(p) {
var x = document.createElement("AUDIO");
x.setAttribute("id", "myVideo");
x.setAttribute("controls", "controls");
var z = document.createElement("SOURCE");
z.setAttribute("src", "/i/audio/song.mp3");
z.setAttribute("type", "audio/mpeg");
x.appendChild(z);
x.autoplay = p;
document.body.appendChild(x);
}
</script>
</body>
</html>