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

按打开网址没反应?

<!DOCTYPE html>
<html>
 <head>
  <title> new document </title> 
  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>  
  <script type="text/javascript"> 
    var message=confirm("是否打开");
    // 新窗口打开时弹出确认框,是否打开
    if(message==true)
    {
        var newmessage=prompt("请输入要打开的网址");

    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/        if newmessage!=NULL;
        {
            window.open('newmessage','width=400px','height=500px','menubar=no','toolbar=no');    

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


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


提问者:weixin_慕盖茨6558867 2019-08-24 10:05

个回答

  • Mrzzhi
    2019-08-28 17:18:54

     function openWindow(){

            var x=confirm("打开新窗口?");
            
            if(x==true)
             {var newwindow=prompt("please input Website:","http://www.imooc.com");
                if(newwindow==null){
                    alert("取消了操作")
                }else{window.open(newwindow,'_blank','width=400,height=500,menubar=no,toolbar=no')
                }
            }

            else{ }

  • 我信你个鬼
    2019-08-27 14:21:40

    function openWindow(){

            if(window.confirm('是否打开')){

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

            }

        }



     

         function openWindow(){


        var x = confirm("new window?");


        if(x == true){

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

        }

        }

    两种方法都可以

  • 一如忘词
    2019-08-24 22:45:06

    function openWindow(){

            var mysure=confirm("请问你要打开新窗口吗?");

            if(mysure){

               var myurl=prompt("请输入要打开的窗口网址:");

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

            }else{

                alert("不打开就算了");

            }

        }


  • qq_慕用0582767
    2019-08-24 18:33:21

    要定义方法的 而且细节上有点错

    要定义方法的  而且细节上有点错

        function openWindow(){

            var x=confirm("new window?");

            if(x==true)

            {

            var newwindow=prompt("please input Website:","http://www.imooc.com");

            window.open(newwindow,'_blank','width=400,height=500,menubar=no,toolbar=no')

                }

            else{}    

            

        }