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

为什么加了按钮后网页不会自动关闭了

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>close()</title>
  <script type="text/javascript">
 function rec(){
     var mywin=window.open("http://www.imooc.com");
         setTimeout("mywin.close()",1000);
 }
  </script>
</head>
<body>
    <input name="button" type="button" onClick="rec()" value = "点击查看网页"  />
</body>
</html>


提问者:蒲蒲森 2017-03-08 16:41

个回答

  • 慕UI2890912
    2017-03-08 18:51:18

    <!DOCTYPE HTML>

    <html>

    <head>

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

    <title>close()</title>

      <script type="text/javascript">

     function rec(){

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

             setTimeout('1000');

             mywin.close()

     }

      </script>

    </head>

    <body>

        <input name="button" type="button" onClick="rec()" value = "点击查看网页"  />

    </body>

    </html>

    这样就自动关闭了。