哪位大神帮我看看,这个代码

原因:“我不管点哪个提示按钮,都执行第一个if语句”

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">

     function Wopen(){

          var str=confirm("你确定要打开新窗口?");

    if(str=true)

    {

        window.open('http://www.imooc.com','_self','width=400,height=500,nenubar=no,status=no');

    }

    else if(str=false){

        alert("你离开了!");

    }

}    

  </script> 

 </head> 

 <body> 

 <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" />

 </body>

</html>


qq_鱼也缺氧_0
浏览 1104回答 1
1回答

西兰花伟大炮

把两个if语句里面的=号改成==
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript