各位同学跪求帮忙看一下为什么我的新窗口打开了,但是页面是错误的呢 找不到问题在哪啊啊~~~~(>_<)~~~~
<!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 myMessage=confirm("确认打开新的网页")
if(myMessage==true)
{
var openUrl=prompt("请输入网址","http://www.imooc.com/");
if(openUrl!=null){
window.open(openUrl,"_blank",'width=400,height=500,menubar=no,toolbar=no')
}
else{alert("再见")}
}
else{alert("再见")}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>