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

求助啊。有木有大大

<!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 sz=confirm("即将打开网站");

if (sz=true){

var uar=prompt("打开网站","http://www.imooc.com");    

if(uar!=null){

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

    }    

    }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


求助!! 

请问那里错啦。

正在回答

1 回答

if (sz=true){

=是赋值的意思,==才是等于,改过来

if (sz==true){
function openWindow()

这里缺了{,括号是成对出现的。最后也别忘了加上}

修改后的JS代码

function openWindow(){
	var sz=confirm("是否打开新网页?");
	if (sz==true){
     	 var uar=prompt("打开网站","http://www.imooc.com"); 
	    if(uar!=null){
             window.open('http://www.imooc.com','_blank','width=500,height=400,menubar=on, toolbar=on');
    	    }  
       }
 }


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

sejeze 提问者

非常感谢! 已经解决了 !
2015-07-09 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

求助啊。有木有大大

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