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

不知道为什么不行,求解答

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>   

  <script type="text/javascript">  

    

    // 新窗口打开时弹出确认框,是否打开

   

    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/


    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

     

     function openWindow()

    {   

        var mymessage = confirm('是否打开');

        if (mymessage == true)

        {

            var new =  prompt("are you sure you want to open it?")

            if (new == 'sure')

            {

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

            }

        }

        

    }

    

  </script> 

 </head> 

 <body> 

  <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 

 </body>

</html>


提问者:慕村9093330 2019-06-28 04:03

个回答

  • 冷月唐刀
    2019-07-03 16:50:41

     prompt的判定问题,取消你的new==null   确定你的new!=null

    并且认为要求网址可以自己输入,只是默认http://www.imooc.com

    所以应该是

    function openWindow() {
        var message=confirm("是否打开新的网站?");
        if (mymessage==true){
            var new=prompt("请输入你的网址:","http://www.imooc.com/");
            if (new !=null){
                window.open(scroll,'width=400,height=500,menubar=no,toolbar=no');
            }
        }
    }


  • 慕桂英6246942
    2019-06-28 10:24:56

      function openWindow()
        {
        var mymessage=confirm("是否打开新窗口?");
        if(mymessage==true)
        {  var mywin=window.open('http://www.imooc.com','_blank','width=400,heigh=500,menubar=no,toolbar=no')   }  
        else
        {  mywin.close();   }
            
        }


    题目上说是“使用 if 判断确认框是否点击了确定”, 而不是输入确定,所以不需要用prompt弹出消息对话框(包含一个确定按钮、取消按钮与一个文本输入框),而是直接用confirm弹出对话框(包含一个确定,一个取消按钮),他俩的区别就是prompt消息对话框有文本输入框,而这里不需要输入,而是直接点击“确定”。