我的代码躲在哪里呢?
<!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 c= confirm("真的要打开新窗口吗?");
if(c==true){
var p= promte("请输入要打开的网站","http://www.imooc.com");
if(p!=null){
window.open(p,'_blank','width=400','height=500','menubar=no','toolbar=no');//引号加上了,但是这个判断出不来
}
else{
alert("你都没有输入网址人家怎么打开嘛!");
}//这里加完之后还是打不开
}
else{
alert("不打开拉倒!再见啦");
}
}
openWindow();
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>