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

为啥不但不关闭而且还直接跳出两个页面?求大神指教

<!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");
     var clos=myswin.confirm("你确定要关闭窗口吗?");
     if(clos)
     {
 mywin.close();}
  </script>
</head>
<body>
</body>
</html>

正在回答

5 回答

你可以试一下

<!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");

    function rec(){

     var close=confirm("你确定要关闭窗口吗?");

     if(close==true)

     {

 mywin.close();}

}

  </script>

</head>

<body>

<p><input type="button" value="click" onclick="rec()"></p>

</body>

</html>


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

你代码好像写错了mywin写成了myswin

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

我发现默认的代码也是弹出两次网页。。

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

if 语句的结构是  if( 判断语句 ){  如果判断语句为true,就执行这里面的代码  } else { 否则就执行这里面的代码 };

判断语句的结构只有2个,一个 true,一个false

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

  你没有给if做判断,可以改为  if(clos=true){ .... } 试试看。

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

qq_咸鱼_66 提问者

emmmmm,兄弟,感谢你的建议,不过……这个if(clos)是if的省略用法,你可以自己试一试,行为clos本身是boolean类型,是可以这样直接用的
2019-03-29 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为啥不但不关闭而且还直接跳出两个页面?求大神指教

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