简单教程
提交运行
代码编辑器:
<p>点击按钮创建一个带有flash动画的 EMBED 元素</p> <button onclick="myFunction()">尝试一下</button> <script> function myFunction(){ var x = document.createElement("EMBED"); x.setAttribute("src", "/static/media/html/helloworld.swf"); document.body.appendChild(x); }; </script>
运行结果: