问答详情
源自:2-7 编程练习

请大佬帮我看看问题出在哪里

https://img2.mukewang.com/5c8b3918000176dc11701182.jpg

emmmm 小白自学的 为啥弹窗都没有= =

提问者:fAt_Tower 2019-03-15 13:33

个回答

  • BlueCat
    2019-03-18 17:15:19

    <!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 mymesenge=confirm('是否開啟新網站');

            if(mymesenge==true)

            {

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

            }

            else

            {

               mymesenge.close(); 

            }

        }

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>


  • qq_慕慕3085076
    2019-03-15 20:15:39

    else....

  • qq_慕虎2027758
    2019-03-15 13:45:14

    截图上那个的话吧gbk换成utf-8

  • qq_慕虎2027758
    2019-03-15 13:44:00

    你回复里的这个可以出来啊


  • fAt_Tower
    2019-03-15 13:37:31

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

    var popup=confirm("确定要弹窗吗?");

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

    if (popup==true)

    {

    window.open (

    "http://www.imooc.com","_blank","width=400px,height=500px"

    );

    }

    eles

    {

    alert ("欢迎下次光临!");

    }

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



    这样是否正确呢