最后跳转网页怎么不能跳到prompt()里面输入的网址呢???
<!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 yun=prompt("你好欢迎光临","www.imooc.com");
if(yun!=null)
{
window.open(yun,"_blank","width:400px,height:500px,toolbar=no,menubar=no");
}
else
{
alert("再见");
}
}
else
{
alert("再见");
}
}
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>