为什么不弹出网页
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>对话框事件</title>
</head>
<body>
<script type="text/javascript">
document.write("显示弹出框"+"<br />");
alert("点击确定关闭弹出框");
document.write("显示对话框"+"<br />");
if(confirm("你愿意学习js吗?")==true)
document.write("你很有前端"+"<br />")
else
document.write("你完了"+"<br />");
document.write("显示提示对话框"+"<br />");
document.write("你需要的学习的技术是"+prompt("你需要学习什么?","请输入相应技术")+"<br />");
function open(){
window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0')
}
</script>
<input name="button" type="button" onclick="open()" value="点击我,打开新窗口!" / >
</body>
</html>