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

重复出现提示框 无跳转

<!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 mymessage=confirm("是否打开新窗口?");


        if(mymessage==true)

        {

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

        }

        else

        {

            alert("打开失败!")

        }

    }

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


正在回答

1 回答

经测试,代码无问题,不出现跳转的原因可能是浏览器限制了弹框;chrome下,设置->高级设置->内容设置->弹出式窗口。另外,你的代码中没有提示框的代码,估计贴错了代码。

<!DOCTYPE html>

<html>

 <head>

  <meta charset="utf-8"/>

  <title> new document </title>  

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

  <script type="text/javascript"> 

  function openWindow(){ 

        var isOpen = confirm("是否确认打开?");

         if(isOpen === true){

            var site = prompt("打开的网址:","http://www.imooc.com");

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

        }

  }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


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

NEONEO 提问者

谢谢
2016-06-22 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

重复出现提示框 无跳转

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