x
 
<!DOCTYPE html>
<html>
<body>
<p>单击按钮创建一个 AUDIO 元素,一个将预加载设置为 “none”,一个将预加载设置为 “auto”。</p>
<button onclick="myFunction('none')">没有预加载的音频</button>
<button onclick="myFunction('auto')">有预加载的音频</button>
<br><br>
<script>
function myFunction(p) {
  var x = document.createElement("AUDIO");
  x.setAttribute("controls", "controls");
  
  var z = document.createElement("SOURCE");
  z.setAttribute("src", "/i/audio/song.mp3");
  z.setAttribute("type", "audio/mpeg");
  x.appendChild(z);
  // 设置 preload 属性:
  x.preload = p;
  document.body.appendChild(x);
}
</script>
</body>
</html>