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

window.close无法关闭新页面。代码如下

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>无标题文档</title>

<script type="text/javascript">

function Wopen(){

window.open('http://www.baidu.com','_blank','height=400,width=600,top=100dp,left=0dp');

window.close();

}

</script>

</head>


<body>

<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >

</body>

</html>


正在回答

2 回答

你这样关闭的是你原来的那个页面, 你应该关闭的是你打开的那个页面的对象

var mychar =window.open('http://www.baidu.com','_blank','height=400,width=600,top=100dp,left=0dp');

mychar.close();

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

champion666 提问者

请问,如果要在代码中添加一行,页面延迟3秒关闭。那代码该如何写?
2016-12-19 回复 有任何疑惑可以回复我~

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

     setInterval(function(){

         mywin.close();

         },3000);

        

  </script>

</head>

<body>

</body>

</html>


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

举报

0/150
提交
取消

window.close无法关闭新页面。代码如下

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