问答详情
源自:2-5 JavaScript-打开新窗口(window.open)

代码有错吗?提交正确了为什么说网页上有错误运行不了呢?

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
  function Wopen(){
 var mymessage=comfirm("你想知道慕课网怎么走么?");
 if(mymessage==true)
 window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0');
 else
 {alert("打开失败!");
 }
</script>
</head>
<body>
    <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>

提问者:小小小小小鲸鱼 2016-11-10 16:23

个回答

  • 阳光明媚的早晨我迟到了
    2016-11-10 16:56:05
    已采纳

    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>window.open</title>
    <script type="text/javascript">
      function Wopen(){
     var mymessage=confirm("你想知道慕课网怎么走么?");
     if(mymessage==true){
     window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0')}
     else
     {alert("打开失败!");
     } 
    }
    </script>
    </head>
    <body>
        <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
    </body>
    </html>
    1. confirm 你写成comfirm

    2. function Wopen(){} 你缺了个大括号

    这样就可以运行了^_^

    没看来你把例子综合应用,挺会举一反三嘛。我也刚学,要不一起做个伴~

  • To3531237
    2016-11-10 17:02:23


    <script type="text/javascript">
      function Wopen(){
     var mymessage=confirm("你想知道慕课网怎么走么?");
     if(mymessage==true){
     window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0');}
     else
     {alert("打开失败!");
     } 

    }
    </script>

  • 异样天空
    2016-11-10 16:58:27

    单词拼写错误confirm写成了comfirm, var mymessage=comfirm("你想知道慕课网怎么走么?");