把提问对话框嵌入到确认对话框不是能完成任务要求么,为什么下面代码不能行呢?
<!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 web=confirm("是否打开新窗口");
if(web==true)
{
var newpage=prompt("是否打开新网址:","http://www.imooc.com/");
if(newpage!=null)
{
window.open("http://www.imooc.com/","_blank","width=400,height=500,menubar=no,toolbar=no")
}
else{alert("你选择了取消");}
}
else{alert("你选择了取消");}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>