<!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 open = prompt("是否打开新窗口,请输入yes或no") // 新窗口打开时弹出确认框,是否打开 if (open == "yes"){// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/ //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。 window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no') }else{ alert("取消新弹窗") } } </script> </head> <body> <input type="button" value="新窗口打开网站" onclick="openWindow()" /> </body></html>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
// 新窗口打开时弹出确认框,是否打开
var myclick = confirm("是否打开,点击确定或取消?");
if(myclick==true)
{
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
var webmess = prompt("请输入你的网址,default或者是其他网址?");
if(webmess == "default")
{
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no');
}
else { window.open(webmess,'_blank','width=400,height=500,menubar=no,toolbar=no'); }
}
else { alert("ByeBye"); }
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</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 open=confirm("确认新建窗口打开网站吗?");
if(open==true)
{var url=prompt("通过输入对话框,确定打开的网址","http://www.imooc.com");
if(url!==null){
window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');
}
else{
alert("再见22");
}
}
else{
alert("再见11");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>