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

不知道为什么点击了弹出窗口的“好”,但是没有做我的window.open代码

<!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 isOpen = confirm("是否打开 http://www.imooc.com/");

        if(isOpen == ture){

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

        }else{

            

        }

    }

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

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

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:qq_灰客_0 2018-09-29 15:25

个回答

  • 慕移动9181930
    2022-03-24 03:39:18

    你看看判断状态,改变状态的地方是不是有什么问题嘞。backgroundColorbackground

  • 慕数据4568312
    2018-09-29 15:37:03

    还有那个网址您最好再确认一下,是不是对的,因为我感觉你那段冒号的空格有一点大,可能是网址的原因。

  • 慕数据4568312
    2018-09-29 15:33:19

    你好,要么把else给删除掉,要么把else后面写完整。