function openWindow()
{var DConfirm=confirm("请确认是否打开?");
// 新窗口打开时弹出确认框,是否打开
if(DConfirm==true)
{var textCon=prompt("输入“Y”,则打开默认网站!");
if(textCon==true)
{window.open('http://www.imooc.com/','_blank','width=400px,height=500px,menubar=no,toolbar=no')} else{null} }
else{null}
promot的返回值错了
应该写成
if(textCon != null)
prompt的返回值别搞错了
第一,prompt中的参数不要混用双引号和单引号,双引号中不要再使用双引号了;第二,prompt的返回值是输入框中的文本值,而不是boolean值