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

求解为什么没成功?

<!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 open=confirm("是否新建网页?");
{var url=prompt("通过输入对话框,确定打开的网址"," http://www.imooc.com");
if(url!=null)
{window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');}
else
{alert("再见!");}
}   
else
{alert("再见!");}
}
  </script>
 </head>
 <body>
      <input type="button" value="新窗口打开网站" onclick="openWindow()" />
 </body>
</html>

正在回答

3 回答

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

<script type="text/javascript">  

function openWindow()

{

var opena=confirm("是否新建网页?");

           if(opena==true)


  {  

  var url=prompt("通过输入对话框,确定打开的网址","");


  if(url!=null&&name!="")


  {

            window.open(url,"target= _blank","width=400px,height=500px,menubar=no,toolbar=no");

    }


else


{

alert("再见");


}

}

else


{alert("再见");

}


}

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


少了加粗部分是上的一个}

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 open=confirm("是否新建网页?");

//加入一个if判断语句

if(open==true)
{var url=prompt("通过输入对话框,确定打开的网址"," http://www.imooc.com");
if(url!=null)
{window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');}
else
{alert("再见!");}
}   
else
{alert("再见!");}
}
  </script> 
 </head> 
 <body> 
      <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
 </body>
</html>

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

去掉多余的大括号,和最后多余的else就行了

<!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 open=confirm("是否新建网页?");

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

if(url!=null)

{window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');}

else

{alert("再见!");}

</script> 

 </head> 

 <body> 

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

 </body>

</html>

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

举报

0/150
提交
取消
JavaScript入门篇
  • 参与学习       739817    人
  • 解答问题       9566    个

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

进入课程

求解为什么没成功?

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