菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟学堂()</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>
运行结果
在线运行
菜鸟学堂 edu.jb51.net