为了账号安全,请及时绑定邮箱和手机立即绑定

为什么总是同时打开两个网页而点按钮却只能关闭一个,哪位大神能帮我看看?代码如下:

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

     function clk(){

        mywin.close();  

     }


  </script>

</head>

<body>

    <input name="button" type="button" onClick="clk()" value="点击我,关闭网站" />

</body>


正在回答

3 回答

稍微改动了一下

<!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","_blank","width=600,height=400,top=100,left=0");

     function clk(x){

     x.close();

     }

  </script>

</head>

<body>

     <input name="button" type="button" onClick="clk(mywin)" value="点击我,关闭网站" />

</body>

</html>


0 回复 有任何疑惑可以回复我~
#1

是青山

这个方法是错的,不好意思了,没有仔细验证就贴出来了
2018-07-15 回复 有任何疑惑可以回复我~

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

0 回复 有任何疑惑可以回复我~

window.open()方法的作用就是新打开一个窗口,如果你想关闭当前窗口直接用 onClick="window.close",如果是想两个窗口同时关闭,需要在clk()函数中加一行window.close;

1 回复 有任何疑惑可以回复我~
#1

天台理发师

还是关不了啊 T.T function clk(){ mywin.close(); window.close; } 这样加不对吗?
2018-06-27 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么总是同时打开两个网页而点按钮却只能关闭一个,哪位大神能帮我看看?代码如下:

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信