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

为什么点击这个按钮不弹出对话框!!程序运行不了!!

<!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/','width=400,height=500,menubar=no,toolbar=no');

        }

        else

        {    

        }    

    }

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


    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/


    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

    

    

  </script> 

 </head> 

 <body> 

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


正在回答

5 回答

var mymessage==confirm("确认打开此网址?");

== 改为 =

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

一棵心 提问者

非常感谢!
2016-04-05 回复 有任何疑惑可以回复我~

<!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 mychar=confirm("新窗口打开网站");

        if(mychar==true){

            var addr=prompt("输入网址","http://www.imooc.com/");

            if(addr!=null){

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

            }         

        }

   }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>

这是最简单的代码:

初步看你程序错误有:

1:var mymessage==confirm("确认打开此网址?");这个地方是一个=号,是赋值语句;而==是逻辑表达式;

2:根据题目缺少prompt()函数。

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

  var mymessage==confirm("确认打开此网址?");这个地方是一个=号

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

var mymessage==confirm("确认打开此网址?");  你写的双等号,正确的为单等号。

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 name=confirm("新窗口打开网站");

        if(name==true){

            var add=prompt("输入网址","http://www.imooc.com/");

            if(add!=null){

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

            }

            else{

               window.open(); 

            }

        }

        else{

            

        }

    }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


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

举报

0/150
提交
取消

为什么点击这个按钮不弹出对话框!!程序运行不了!!

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