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

关闭已打开的窗口。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>window.open(打开新窗口 )</title>
<script type = "text/JavaScript">
var myOpenWindow = window.open('http://www.baidu.com');
var my = confirm("你确定要关闭窗口么?");
if(my == true){
	myOpenWindow.close();
}else{
	alert("我的小乖乖,以后有什么事儿记得你的度娘哈!");
}
	
</script>
</head>
<body>
</body>
</html>

我的问题是打开窗口,执行完confirm(),点击确定怎么关不了打开的窗口呢?

正在回答

2 回答

因为下面没有代码执行关闭confirm

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

shaoxiao64017599 提问者

非常感谢!
2017-01-06 回复 有任何疑惑可以回复我~
#2

慕粉1826222000

啥意思啊 if里面的true不是就执行了confirm这一步吗
2017-02-10 回复 有任何疑惑可以回复我~
#3

qq_頖縌乖乄絯_04017281 回复 shaoxiao64017599 提问者

做个函数就可以了,最佳的说的你也看不懂什么意思
2017-03-14 回复 有任何疑惑可以回复我~

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>window.open(打开新窗口 )</title>

<script type = "text/JavaScript">

function rec(){

var myOpenWindow = window.open('http://www.baidu.com');

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

if(my ==true){

    myOpenWindow.close();

}else{

    alert("我的小乖乖,以后有什么事儿记得你的度娘哈!");

}

 }    

</script>

</head>

<body>

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

</body>

</html>


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

举报

0/150
提交
取消

关闭已打开的窗口。

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