BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> </head> <body> <embed height="200" id="myEmbed" src="helloworld.swf" style="border:1px solid" width="200"> <p>点击按钮返回 flash 动画的高度。</p> <p id="demo"></p> <button onclick="myFunction()">尝试一下</button> <script> function myFunction(){ var x = document.getElementById("myEmbed").height; document.getElementById("demo").innerHTML=x; } </script> </body> </html>
运行结果