function openWindow()
{
var open = confirm("shifou dakai?");
// 新窗口打开时弹出确认框,是否打开
if(open==true)
{var URL=prompt("shuruwangzhi","http://www.imooc.com/");
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
if (URL!=true)
{window.open(URL,'width=400px,height=500px,menubar=no,toolbar=no');}
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
else
{alert("zaijian!");}
}
else
{alert("zaijian!");}
}
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title>
</head> <body>
<script>
// 新窗口打开时弹出确认框,是否打开 window.onload=function () { var open = confirm("shifou dakai?");
if(open==true){
//通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/ var URL=prompt("shuruwangzhi","");
if (URL!==true){ //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。 window.open(URL,'123','width=400,height=500,menubar=no,toolbar=no');
}else{ alert("zaijian!"); }
}else{ alert("zaijian2!"); } } </script> </body> </html>
有2个问题:第一个问题是网址:http://之间你多写了一个空格,你重新写一下;第二个问题是prompt中 if 的判断语句是用 !=null 或者 ==null,而不是true或者false;应该改写为 if(URL!=null), 你可以看下我写的
if(URL!=true) 改为 if(URL!="")
这里哪来的大婶呀
//这里的地址写错了 var URL=prompt("shuruwangzhi","http://www.imooc.com/");