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

这样写的,对了吗?

function openWindiw() {        var message = confirm("是否打开?");        if(message == true){            window.open("http://www.imooc.com","_blank","width = 400,height = 500,toolbar = no,menubar = no,");        }        else{            window.close();        }                        }

提问者:南瓜帮主 2016-01-31 15:35

个回答

  • xibu
    2016-02-01 21:30:33

    这个我写不出来了 有点乱了 谁写出来了 求教。。。

  • 瓜秧
    2016-01-31 16:02:37

    function openWindow(){

        message=confirm("是否打开?")

        if(message==ture){

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


  • Allal
    2016-01-31 15:54:06

    错了,点击左下角可以下看正确的