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

运行不了,求大神?

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

if(cz==true)

{var cl=prompt("通过输入对话框,确定打开的的网址","http://www.imooc.com/");

if(cl!=null)

{window.open('http://www.imooc.com/','_blank''width=400,height=500,menubar=no,toolbar=no')}

else{alert("88");}

else{alert("88");}

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


正在回答

5 回答

function openWindow(){
    // 新窗口打开时弹出确认框,是否打开
    var newWin = confirm("是否打开新的网址?");
    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
    if(newWin == true)var newUrl = prompt("打开新的网址:","http://www.imooc.com/");
    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
    if(newUrl != null)window.open(newUrl,"_blank","width=400,height=500,menubar=no,toolbar=no");
    }


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

你这个一共有三处错误

1   function openWindow()  后面没有{  }

2  第一个 else{alert("88");}  这里  它还包含在第一个if语句中  所以 这里应该有个 }  来结尾

3{window.open('http://www.imooc.com/','_blank''width=400,height=500,menubar=no,toolbar=no')}


这里  "_blank"  应该有个 ,  

0 回复 有任何疑惑可以回复我~
<!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 cz=confirm("是否打开");
   if(cz==true)
  {
    var cl=prompt("通过输入对话框,确定打开的的网址","http://www.imooc.com/");
        if(cl!=null)
       {
        window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no') 
        }
        else
        {
        alert("88");
         }
    
    }
    else
    {
    alert("88");
    }
}
    
  </script> 
 </head> 
 <body> 
 <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
 </body>
</html>


//其实你写得没有错,但是括号对应逻辑比较乱,两个if  else 的括号补好,还有window里少标点符号.加上好好捋一遍就ok了

0 回复 有任何疑惑可以回复我~
<!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 cz=confirm("是否打开");
if(cz==true)
{window.open('http://www.imooc.com/','_blank''width=400,height=500,menubar=no,toolbar=no')}
else{alert("88");
}
}
    
    
  </script> 
 </head> 
 <body> 
 <input name="button" type="button" onclick="openWindow()"   value="新窗口打开网站"/> 
 </body>
</html>


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

 function openWindow(){
        var sure=confirm('是否打开?');
        if(sure==true){
            window.open('http://www.imooc.com/','_blank','width=400,height=500,scrollbars=yes,menubar=no,toolbar=no')
        };
    };

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

举报

0/150
提交
取消

运行不了,求大神?

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