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

2-7编程练习

function openWindow(){        var newWeb = conmpt('是否打开');        if(newWeb==true)        {            window.open('http://www.imooc.com','width=400px,height=500px,menubar=no,toolbar=no');        }else{            return '';        }    } 开始也有点懵,想想怎么去实现吧

提问者:qq_优雅的世界_0 2017-06-07 22:18

个回答

  • 我要SSR
    2017-06-08 08:36:52

    哥们。。。你的代码写错了,不是“conmpt”,是“ confirm”。。。

  • 潇洒lai
    2017-06-07 22:51:47

    把  conmpt 换成 confirm

  • 潇洒lai
    2017-06-07 22:50:46

    这是我的思路:

    function openWindow(){
       var newWeb = confirm('是否打开');
       if(newWeb==true){
           window.open('http://www.imooc.com','width=400px,height=500px,menubar=no,toolbar=no');
       }else{
           return '';
       }
    }
    openWindow();