JavaScript 参考手册
HTML DOM Object 对象
您可以使用 document.createElement() 方法来创建 <object> 元素
源代码:
点击运行 »
<p>点击按钮创建带有嵌入 flash 文件的 OBJECT 元素。</p> <button onclick="myFunction()">尝试一下</button> <script> function myFunction() { var x = document.createElement("OBJECT"); x.setAttribute("data", "/examples/helloworld.swf"); document.body.appendChild(x); }; </script>
运行结果:
点击运行 »