怎么调用链接,大神?

来源:2-7 编程练习

金潭村的小菜鸟

2017-09-07 20:09


<!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 abc=prompt("确认打开这个网址吗?", "http://www.imooc.com");
           if(abc!=null)
           {
               alert(window.open('url', '_blank','width=400,height=500,menubar=no,toolbar=no'))
           }
           else
           {
               abc.close()
           }
   </script>
</head>
<body>
<input type="button" value="新窗口打开网站" onClick="openWindow()" />
</body>
</html>

点button没反应

写回答 关注

4回答

  • web前端小白进阶
    2017-09-07 20:27:57
    已采纳

    <!DOCTYPE html>

    <html>

     <head>

      <title> new document </title>  

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

      <script type="text/javascript">  

        

      function openWindow(){ 

          confirm("是否打开网站");// 新窗口打开时弹出确认框,是否打开

    var abc=prompt("输入要打开的网址","http://");

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

    {}else{

        window.open(abc,'_block','width=400px,height=500px,menubar=no,toolbar=no')

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

       

      }

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>

    这个是我的作业你可以参考一下

    web前端小...

    噢这种问题都是很难发现的小毛病,以后一定要注意必须在英文状态下输入

    2017-09-11 11:52:35

    共 2 条回复 >

  • 吃货666
    2017-09-07 20:29:11

    <!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 abc=prompt("确认打开这个网址吗?");
               if(abc!=null)
               {
                   window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no');

               }
               else
               {
                   abc.close()
               }
       </script>
    </head>
    <body>
    <input type="button" value="新窗口打开网站" onClick="openWindow()" />
    </body>
    </html>

    web前端小...

    你这个不管输入什么网站都只能打开慕课网

    2017-09-07 20:30:56

    共 1 条回复 >

  • web前端小白进阶
    2017-09-07 20:25:31

    url换成abc

  • web前端小白进阶
    2017-09-07 20:22:43

      alert(window.open('url', '_blank','width=400,height=500,menubar=no,toolbar=no'))去掉alert试一试


JavaScript入门篇

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

739818 学习 · 9566 问题

查看课程

相似问题