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

为什么什么什么网站都打不开

https://img2.mukewang.com/5c9ce0d70001ac1208110799.jpg不管输什么都是打开慕课网,而且卡住不显示

提问者:qq_狗活_twEPQW 2019-03-28 22:58

个回答

  • 慕沐4494624
    2019-04-01 12:26:21

    W大写

  • qq_慕码人9482851
    2019-03-31 20:17:24

    <script type="text/javascript">  

        function openWindow()

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

    {   var message=confirm("是否打开对话框?");

        if(message==true)

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

       {  ensure=prompt("请输入网址","http://www.imooc.com")

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

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

    }  

      </script> 


  • qq_慕码人9482851
    2019-03-31 20:16:37

    https://img.mukewang.com/5ca0af7900010c0806980264.jpg为什么跳转后的页面网址是这样的,什么都不显示?

  • qq_狗活_twEPQW
    2019-03-28 23:03:18

    <!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 ensure=confirm("是否打开");   
        if(ensure==true){
            web=prompt("输入你要打开的网址",'http://www.pronhub.com');
        window.open("web","-blank",'menubar=no,toolbar=no, status=yes,scrollbars=yes')}
       
        }
        // 新窗口打开时弹出确认框,是否打开

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

        //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
       
       
      </script>
     </head>
     <body>
       <input type="button" value="新窗口打开网站" onclick="openwindow()" />
     </body>
    </html>           贴个代码你们感受一下