问答详情
源自:2-6 JavaScript-关闭窗口(window.close)

如何在打开的新的窗口里用弹出confirm对话框关闭窗口

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>close()</title>

  <script type="text/javascript">

     var mywin=window.open("http://www.imooc.com",_top);

     var close=confirm("关闭页面?")

     if(close!=null){

         if(close==true){

             mywin.close();

         }

         else{}

     }

 

  </script>

</head>

<body>

</body>

</html>


提问者:精慕门2617989 2015-12-04 23:51

个回答

  • 木子舟义
    2015-12-05 11:24:40

    把你代码中的 ,_top  或者用 _blank   但是记得加引号。