为了账号安全,请及时绑定邮箱和手机立即绑定

代码哪里有错误?

<!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 回答

 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像素,无菜单栏、无工具栏。

    }

   }

比对下 

0 回复 有任何疑惑可以回复我~
#1

犄角旮旯的鱼 提问者

非常感谢!
2016-06-19 回复 有任何疑惑可以回复我~

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

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

代码哪里有错误?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信