简单教程
提交运行
代码编辑器:
<p>点击按钮创建 OBJECT 和 PARAM 元素并嵌入音频文件</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var x = document.createElement("OBJECT"); x.setAttribute("data", "/static/i/html/horse.mp3"); x.setAttribute("id", "myObject"); document.body.appendChild(x); var y = document.createElement("PARAM"); y.setAttribute("name", "autoplay"); y.setAttribute("value", "true"); document.getElementById("myObject").appendChild(y); } </script>
运行结果: