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

大神们帮忙看下问题出在哪了,primept不运行

<!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 mywin=confirm("是否打开一个新窗口")

      if (mywin==ture){

      var web=prompt("请输入你要打开的网址","http://www.imooc.com")

      if web==null{

          web.open("_blank","width:400px","heigh:500px","menubar=no","toolbar=no"

      }

      }

  }

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


正在回答

4 回答

if语句有问题,打开窗口的命令window.open();

0 回复 有任何疑惑可以回复我~
正确代码如下:
<!DOCTYPE html>
<html>
    <head>
        <title> new document </title>  
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 


        <script type="text/javascript">
        function openWindow(){
            var mywin = confirm("是否打开一个新窗口");
            if (mywin==true){
                var web=prompt("请输入你要打开的网址","http://www.imooc.com");
                if (web != null){
                    window.open(web,"_blank","width=400px,heigh=500,menubar=no,toolbar=no");
                }
            }
        }
        </script> 
    </head> 

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


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

if(web!=null){

}

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

if web==null{  // 是不是应该改成

if web!=null{

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

举报

0/150
提交
取消

大神们帮忙看下问题出在哪了,primept不运行

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