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

来源:2-5 JavaScript-打开新窗口(window.open)

Bill0123

2015-08-02 10:34

<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>


写回答 关注

1回答

  • 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>

    你看下有什么不懂的

    Perona 回复加油兮兮

    是哒,function后面带的是函数名。window.open()是方法。函数名是自定义的,方法名是本身就有的。

    2015-10-18 12:29:16

    共 4 条回复 >

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题