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

求助大神 为啥我的不能弹出新窗口啊 看了好久都不知道哪里有错误

<!DOCTYPE html>
<html>
 <head>
  <title> new document </title>  
  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>   
  <script type="text/javascript">  
  function Wopen()
  {
  var mymessage=confirm("是否打开新窗口");
  if(mymessage==ture)
  {
      var url=prompt("请输入网址"," http://www.imooc.com/");
      if(mymessage!=null)
      {
      windows.open(url,'_blank','width=400px,height=500px,menubar=no,toolbar=no');
      }
  }
  else
  {
      alert("再见!");
  }
  }
  </script> 
 </head> 
 <body> 
	  <input type="button" value="新窗口打开网站" onclick="Wopen" /> 
 </body>
</html>


提问者:九黎i 2017-11-25 18:05

个回答

  • ParseDark
    2017-11-25 21:06:39
    已采纳

    牛逼  你的TRUE  TURE 写反了,,改过来就好。。。。

  • 慕神4291904
    2017-11-27 10:43:44

    1. 字符编码=utf-8

    2. ture改成true

    3. prompt中的网址是英文的冒号:

    4. windows改为window

    5. 最后的onclick="wopen()" 

      改玩再试试

  • ParseDark
    2017-11-25 21:07:09

    <!DOCTYPE html>

    <html>

     <head>

      <title> new document </title>  

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

      <script type="text/javascript">  

      function Wopen()

      {

      var mymessage=confirm("是否打开新窗口");

      if(mymessage==true)

      {

          var url=prompt("请输入网址"," http://www.imooc.com/");

          if(mymessage!=null)

          {

          windows.open(url,'_blank','width=400px,height=500px,menubar=no,toolbar=no');

          }

      }

      else

      {

          alert("再见!");

      }

      }

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>



  • 米罗嫩爸
    2017-11-25 19:07:06

    最后一个 onclick="Wopen()"    你少了一个  括号。。。。。 这是个不易察觉的错误。。。

  • 米罗嫩爸
    2017-11-25 19:06:14

    <!DOCTYPE html>

    <html>

     <head>

      <title> new document </title>  

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

      <script type="text/javascript">  

      function Wopen()

      {

      var mymessage=confirm("是否打开新窗口");

      if(mymessage==ture)

      {

          var url=prompt("请输入网址"," http://www.imooc.com/");

          if(mymessage!=null)

          {

          windows.open(url,'_blank','width=400px,height=500px,menubar=no,toolbar=no');

          }

      }

      else

      {

          alert("再见!");

      }

      }

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>


  • 米罗嫩爸
    2017-11-25 19:03:23

    是不是浏览器问题?禁用了