菜鸟教程 tryjsref_embed_create 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <p>点击按钮创建一个带有flash动画的 EMBED 元素。</p>
<button onclick="myFunction()">尝试一下</button>
<script>
function myFunction(){
	var x = document.createElement("EMBED");
	x.setAttribute("src", "helloworld.swf");
	document.body.appendChild(x);
};
</script>