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

来源:2-7 编程练习

一棵心

2016-03-30 15:47

<!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回答

  • undef_鬼
    2016-03-30 16:02:10
    已采纳

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

    == 改为 =

    一棵心

    非常感谢!

    2016-04-05 14:40:39

    共 1 条回复 >

  • thewar3
    2016-03-30 16:20:57

    <!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()函数。

  • only_fzx
    2016-03-30 16:02:47

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

  • 你你你是我的风景
    2016-03-30 16:02:36

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

  • 逃离星球
    2016-03-30 15:59:22

    这是我写的代码

    <!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>


JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739816 学习 · 9566 问题

查看课程

相似问题