<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
</head>
<body>
<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>
</body>
</html>