运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Window Object</h1> <h2>The resizeBy() Method</h2> <p>Open a new window, and resize it:</p> <p>Press "Resize window" multiple times (the window will increase each time).</p> <button onclick="openWin()">Create window</button> <button onclick="resizeWin()">Resize window</button> <script> let myWindow; function openWin() { myWindow = window.open("", "", "width=100, height=100"); } function resizeWin() { myWindow.resizeBy(250, 250); } </script> </body> </html>