实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>runoops基础编程教程(runoops.com)</title> <script> function resizeWindow(){ top.resizeBy(100,100); } </script> </head> <body> <form> <input type="button" onclick="resizeWindow()" value="调整窗口"> </form> <p><b>注意:</b>我们使用了 <b>top</b> 元素而不是<b>window</b>元素, 因为我们使用<b>frames</b>。如果你不使用<b>frames</b>,使用<b>window</b>元素来代替。</p> </body> </html>
运行结果: