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

这样为什么会弹出两次确认窗口啊?

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

    

    var xql=confirm("是否打开窗口");

    // 新窗口打开时弹出确认框,是否打开

    if(xql==true)

    {

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

    }

    else

    {

    }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


正在回答

5 回答

第一次是编辑器里边的,第二次是在浏览器上的

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

慕慕3416675 提问者

首先谢谢你的回答!我想问下我这样写对不对呢?为什么他们都要加个函数什么的,这样写有更好吗?
2018-03-26 回复 有任何疑惑可以回复我~

<!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 xql=confirm("是否打开窗口");
        if(xql){
            window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no');
        }  
    }
  </script>
 </head>
 <body>
 <input type="button" value="新窗口打开网站" onclick="openWindow()" />
 </body>
</html>

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

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>className属性</title>
    <script type="text/javascript">
       

    // 新窗口打开时弹出确认框,是否打开
    function openWindow(){
        var xql = confirm("是否打开新窗口?");
        if(xql==true){
            window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no');
        }
        else{
            alert("打开失败");
        }
    }
    </script>
</head>
<body>
    
    <input name="button" type="button" onClick="openWindow()" value="点击" />
    
</body>
</html>

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

举报

0/150
提交
取消

这样为什么会弹出两次确认窗口啊?

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