代码哪里有错误?

来源:2-7 编程练习

犄角旮旯的鱼

2016-06-17 17:47

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

    

  function rec(){

      var message= confirm();

     message =prompt()

      if(message==true)

      {

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

          }

      else

      {

          return 0;

      }

      

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


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


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

    

    


写回答 关注

2回答

  • 慕用4124784
    2016-06-17 18:32:17
    已采纳

     function openWindow(){

           var windows="http://www.imooc.com/"

           var openwin=prompt("请输入你要打开的网址",windows)

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

       if(openwin){

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

            var win=window.open(windows,"_blank","width=400, heigth=500 ,menubar=no,toolbar=no")

            //win.close()

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

        }

       }

    比对下 

    犄角旮旯的鱼

    非常感谢!

    2016-06-19 19:20:51

    共 1 条回复 >

  • qq_初夏_6
    2016-06-17 18:18:49

    function openWindow(){

        if(confirm("确认打开新窗口?")){

            var myname = prompt("请输入你要代开的窗口的网址");

            if(myname != null){

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

            }else{

                alert(1);

            }

        }

        }

    这个是我写的代码,在新打开的窗口那一块儿,我没有按照要求来写,其他的都ok

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题