这样写对不对啊?

来源:2-7 编程练习

weixin_慕斯5277598

2019-09-19 00:18

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

    function mywin() {

         var a = confirm('是否打开?')

        if (a == true) {

          var gg= window.open(

            'http://www.imooc.com',

            'width:400px',

            'heigth:500px',

            'menubar:no',

            'toolbar:no',

          )

        } else {var b= window.close(

          'http://www.imooc.com',

          'width:400px',

          'heigth:500px',

          'menubar:no',

          'toolbar:no',)

        }

      }

        

        

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


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


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

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


写回答 关注

2回答

  • qq_夫儒何_0
    2019-09-19 15:01:13

    <!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 flag = confirm("确定打开新窗口吗?"); 

            if(flag == true){

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

    }else{

        alert("取消打开新窗口")

    }

        }

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


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


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

        

        

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>


  • qq_夫儒何_0
    2019-09-19 14:48:11

    ture 的时候打开,  取消的时候不用做 

    else {var b= window.close(

              'http://www.imooc.com',

              'width:400px',

              'heigth:500px',

              'menubar:no',

              'toolbar:no',)

            }

          }

    操作, 取消就是不打开,不用再去关页面了。

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题