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

这样的代码是不是错误的?但还是正确运行,只是会跳出两个提示框

<script type="text/javascript">      

     alert("是否确认要打开新页面?");

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

</script> 


正在回答

4 回答

  1. 你的高height写错了

  2. 你这样是会弹出提示,但是没有实现他的功能要求呀

可以参考一下我的

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

        if(a==true){

            var b=prompt("请输入要打开的网页","http://www.imooc.com");

            if(b==null){

                document.write('那没事了');

            }

            else{

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

            }

        }

        else{

            document.write('那没事了');

        }

    }

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


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


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

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


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

努力学习的秋

你就是王子护卫队?
2019-03-29 回复 有任何疑惑可以回复我~

https://img1.sycdn.imooc.com//5c91391c0001b90310490686.jpg看下我的

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

代码是没错,对这个语句alert("是否确认要打开新页面?");无伦如何都会弹出两个网页,高的英语写错了,

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

不是,你写了两个弹框它就会弹出两个,删除一个就会弹出一个了

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

举报

0/150
提交
取消

这样的代码是不是错误的?但还是正确运行,只是会跳出两个提示框

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