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

为什么我的网页打不开

<!DOCTYPE HTML>

<html>

<head>

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

<title>close()</title>

  <script type="text/javascript">

  function rec()

  {

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

if(mywin==true)

{ var Open;

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

if(Open!=null)

{

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

}

else

{

alert("再见")

}

  }

  </script>

</head>

<body>

<input name="button" type="button" onClick="rec()" value="open"/>

   

</body>

</html>

点击打开网页的时候  跳出来的是Open,而不是输入的网址


提问者:小贤子 2016-05-03 15:56

个回答

  • Paranoid_L
    2016-05-03 16:09:25

    第一个参数是url,直接输入url就可以了

  • 一坨屎
    2016-05-03 16:07:10

    window.open('Open','_blank','width=400px,height=500px,menubar=no,toolbar=no') ;这一行有问题,第一个参数不应该加引号