weixin_慕斯5277598
2019-09-19 00:18
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function mywin() {
var a = confirm('是否打开?')
if (a == true) {
var gg= window.open(
'http://www.imooc.com',
'width:400px',
'heigth:500px',
'menubar:no',
'toolbar:no',
)
} else {var b= window.close(
'http://www.imooc.com',
'width:400px',
'heigth:500px',
'menubar:no',
'toolbar:no',)
}
}
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="mywin()" />
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var flag = confirm("确定打开新窗口吗?");
if(flag == true){
window.open( "http://www.imooc.com/","_blank","toolbar=no, menubar=no, width=400, height=500");
}else{
alert("取消打开新窗口")
}
}
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
ture 的时候打开, 取消的时候不用做
else {var b= window.close(
'http://www.imooc.com',
'width:400px',
'heigth:500px',
'menubar:no',
'toolbar:no',)
}
}
操作, 取消就是不打开,不用再去关页面了。
JavaScript入门篇
739817 学习 · 9566 问题
相似问题