fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> <p>点击按钮创建 AUDIO 元素, 一个将 preload 属性设置为 "none", 另外一个设置为 "auto"。</p> <button onclick="myFunction('none')">Audio 不使用 preload</button> <button onclick="myFunction('auto')">Audio 使用 preload</button> <br> <script> function myFunction(p){ var x = document.createElement("AUDIO"); x.setAttribute("controls", "controls"); var y = document.createElement("SOURCE"); y.setAttribute("src", "horse.ogg"); y.setAttribute("type", "audio/ogg"); x.appendChild(y); var z = document.createElement("SOURCE"); z.setAttribute("src", "horse.mp3"); z.setAttribute("type", "audio/mpeg"); x.appendChild(z); // 设置 preload 属性: x.preload=p; document.body.appendChild(x); } </script> </body> </html>
运行结果