问答详情
源自: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 window.open();

    window.open('http://www.imooc.com','_blank','width=600px','height=400px','top=100px','left=0px';)

    alert(Wopen());  


  } 

</script>

</head>

<body>

    <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >

</body>

</html>


提问者:慕粉15008699681 2017-02-25 16:30

个回答

  • Jasmine3476952
    2017-02-25 17:28:20

    同意楼上的 不用变量名 不要使用关键字 和保留字

    有语法错误

  • Ic丶re
    2017-02-25 16:51:17

    var window.open();  声明变量不要用这么容易混淆的名字

    alert(Wopen());  在自己的函数中调用自己  语法错误  这句得放函数外面