问答详情
源自:2-7 编程练习

真的不知道哪里不对了

function openWindow()

  {

   var ask=confirm("真的要打开吗?")

if(ask==ture)

{

    var ag=prompt("确认一下","www.imooc.com")

    if(ag!=null)

     window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbars=no')

     else

     alert("拜拜")

}

 

 else

 alert("再见")


提问者:weixin_慕圣1005141 2019-02-10 18:40

个回答

  • w_alone
    2019-02-10 18:47:11

    你的函数没有写完整吧,格式很乱啊,还有你的if判断,格式也是不对的,肯定生效不了。
    if(条件){执行代码块}else{否则执行的代码块。}