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

如下所示,为什么点否不起作用

function openWindow(){   var open = confirm("是否确认打开?");   var open1 = prompt("请输入一个网址","http://www.baidu.com");   window.open(open1); }

正在回答

3 回答

首先没有if判断语句,其次是最后一句代码没设置宽高

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

楼主你没判断

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

  function openWindow(){

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

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

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

            var url = prompt("请输入一个网址","http://www.imooc.com/");

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

            window.open(url,'_blank','width=400,height=500,toolbar=no,menubar=no,scrollbars=yes');

        }

        else{document.write("打开失败!")}

    }   

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


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

qq_青羊_03823540

这个答案已经完美了,不用再回答了
2016-08-15 回复 有任何疑惑可以回复我~

因为你没有用if判断open的返回值是ture还是false

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

举报

0/150
提交
取消

如下所示,为什么点否不起作用

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