代码编辑器:
x
1
<embed id="myEmbed" src="/static/media/html/helloworld.swf" width="200" height="200" style="border:1px solid">
2
<p>点击按钮修改flash动画的宽度为500像素</p>
3
<button onclick="myFunction()">尝试一下</button>
4
<script>
5
function myFunction(){
6
document.getElementById("myEmbed").width="500";
7
}
8
</script>
9