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

昨天不好使今天又生效了日....但是和答案有差别

  <script type="text/javascript">  

    function openWindow(){

        var ts=prompt("是否打开?","http://www.imooc.com");

        if(ts!=null)

          window.open(ts,"_blank","width=400px,height=500px,menubar=no,toolbar=no");

    }


提问者:qq_没有画笔的达芬奇_hmoGQT 2018-11-04 16:52

个回答

  • fqvdef
    2018-11-04 21:14:17

    还有就是你if语句少了个花括号{

  • fqvdef
    2018-11-04 20:58:01

     function openWindow(){

    var shifou = confirm("是否打开");


        if( shifou == true){


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


        }

    }