运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Window Object</h1> <h2>The open() and close() Method</h2> <button onclick="openWin()">Open w3schools.com in a new window</button> <button onclick="closeWin()">Close the new window</button> <script> let myWindow; function openWin() { myWindow = window.open("https://w3schools.org.cn", "_blank", "width=500, height=500"); } function closeWin() { myWindow.close(); } </script> </body> </html>