运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <object id="myObject" width="250" height="200" data="helloworld.swf" style="border:1px solid black"></object> <p>Click the button to change the height of the object element to 400px.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myObject").height = "400"; } </script> </body> </html>