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

为什么我这样写百度首页出不来啊?

<html>

<head>

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

<title>window.open</title>

<script type="text/javascript">

  function window.open(){

   'http://www.baidu.com/','_blank','width=600,hieght=400,top=100px,left=0px '  


 } 

</script>

</head>

<body>

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

</body>

</html>


提问者:Bill0123 2015-08-02 10:34

个回答

  • Perona
    2015-08-02 10:44:04
    已采纳

     function window.open(){
       'http://www.baidu.com/','_blank','width=600,hieght=400,top=100px,left=0px '  
    
     }

    函数名不要取JS的关键字,也不能带点。我估计你是把函数和方法弄混了。

    修改后的代码

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>window.open</title>
    <script type="text/javascript">
      function Wopen(){
       window.open('http://www.baidu.com/','_blank','width=600,hieght=400,top=100px,left=0px ');  
    
     } 
    </script>
    </head>
    <body>
        <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
    </body>
    </html>

    你看下有什么不懂的