Window close() 方法

阅读更多

定义和用法

close() 方法用于关闭浏览器窗口。

语法

window.close()

实例

  1. DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="gb2312">
  5. <title>关闭窗口title>
  6. <script>
  7. function openWin()
  8. {
  9. myWindow=window.open("","","width=200,height=100");
  10. myWindow.document.write("

    这是'我的窗口'

    "
    );
  11. }
  12. function closeWin()
  13. {
  14. myWindow.close();
  15. }
  16. script>
  17. head>
  18. <body>
  19. <input type="button" value="打开我的窗口" onclick="openWin()"/>
  20. <input type="button" value="关闭我的窗口" onclick="closeWin()"/>
  21. body>
  22. html>

运行效果


Window close() 方法_第1张图片
 
  • Window close() 方法_第2张图片
  • 大小: 6.6 KB
  • 查看图片附件

你可能感兴趣的:(Window,close())