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

弹出第一个询问框,点击取消为什么还会自动跳转网页。 求解答谢谢

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

    function openWindow(){

       var dakai=confirm("是否打开该网页?");

       if (dakai==true)

     {var b=prompt("确定打开的网址","http://www.imooc.com/");

     if(b=true)

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

   else

   {document.write("拜拜");}

    }

    else

   {document.write("拜拜");}

    }

    </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:慕函数1124787 2019-02-12 11:00

个回答

  • 江南小帅瓜
    2019-02-12 12:33:21

    业务逻辑上出问题了,你应该把prmpot()获取到的 Boolean值的判断写在confirm()的判断内,