我打的代码怎么没反应?哪里不对。求帮助

来源:2-7 编程练习

东超2014

2016-09-14 22:39

<!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 aaa=confirm("是否打开");

        if(aaa==ture){

            var bbb=prompt("输入网址");

            if(bbb!=null){

                window.open('bbb','_blank','width=400,height=500,menubar=no,toolbar=no')

            }

            else{alert("o");}

        }

        else{alert("i");}

    }


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


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


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

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


写回答 关注

3回答

  • 隔壁诸葛村夫
    2016-09-16 11:21:36
    已采纳

    if(aaa==ture){   应该是true,

    window.open(bbb,"_blank","width=400,height=500,menubar=no,toolbar=no") 你输出的是bbb这个变量里的元素,而不是字符串'bbb'

    东超2014

    谢谢!

    2016-10-04 18:26:40

    共 1 条回复 >

  • 隔壁诸葛村夫
    2016-09-16 11:22:38

    <!DOCTYPE html>

    <html>

     <head>

      <title> new document </title>  

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

      <script type="text/javascript">  

         function rec(){

            var aaa = confirm("是否打开");// 新窗口打开时弹出确认框,是否打开

        

       if(aaa == true)

    {

            var bbb = prompt("输入网址","http://www.baidu.com");// 通过输入对话框,确定打开的网址,默认为 http://www.baidu.com

              if(bbb!=null)

    {


                window.open(bbb,"_blank","width=400,height=500,menubar=no,toolbar=no");//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

              }

                else

    {

    alert("o")

    }      

    }

            else

    {

    window.open("http://www.imooc.com","_blank","width=400,height=800");

    }

        }

    </script> 

     </head> 

     <body> 

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

     </body>

    </html>


  • 慕的地0857878
    2016-09-14 22:47:36

      var bbb=prompt("输入网址");改为var bbb=prompt("通过输入对话框,确定打开的网址","http://www.imooc.com");你真实的网址要输进去啊

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题