function openWindow()
var open=confirm("新窗口打开网站吗");
if (open==ture){
var webbar=prompt("通过输入对话框,确定打开的网址","默认为 http://www.imooc.com/");
if (webbar!=null){
window.open(webbar,'_blank','width=400px','height=500px''meanubar=no''toolbar=no');
}
else{
alert(GG1);
}
else{
alert(GG2);
}
}
function openWindow()后面的代码没有用{}括起来,
'width=400px','height=500px''meanubar=no''toolbar=no',使用,号分割,
if...else...嵌套有问题,
GG1和GG2没有定义
function openWindow()后面是不是少了个{