为什么出不来效果,为什么promt消息对话框出不来?求大神看看我的代码,不是浏览器的问题,因为我试了好几个浏览器都一样
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript">
function openWindow(){
var open=confirm("是否在新窗口打开该页面");
if(open==true){
var url=promt("请确认该网页网址","http://www.imooc.com");
}else{
alert("退出");
}
if(url!=null){
window.open(url,"_blank",'width=400,height=500,menubar=no,toolbar=no');
}else{
alert("退出");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>