问答详情
源自:8-1 window对象

为什么document.getElementByTagName没法获取input属性


<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
   <title>window对象</title>
   <script type="text/javascript">
       var button=document.getElementsByTagName("input")[0];
        button.onclick=function (){
           window.open("http://www.baidu.com","_black","height=400px width=600px ")
       };
   </script>
</head>
<body>
<form>
   <input type="button" value="点击我,打开新窗口" />
</form>
</body>
</html>

提问者:an夜yi人 2015-12-24 00:06

个回答

  • 慕移动9181930
    2022-03-24 21:37:08

    陶叫兽表示:你们这是病,得治!Jquery

  • Joy_Sang
    2015-12-24 13:19:19

    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>window对象</title>
    </head>
    <body>
    <form>
        <input type="button" value="点击我,打开新窗口" />
    </form>
    </body>
     <script type="text/javascript">
           window.onload = function(){
                var button=document.getElementsByTagName("input")[0];
                button.onclick=function (){
                window.open("http://www.baidu.com","_black","height=400px width=600px ")
                };
           }
        </script>
    </html>


  • mmmmm_魂牵梦萦
    2015-12-24 08:21:05

    那是因为你script标签放到上面了,浏览器是顺序加载,所以当加载到document.getElementByTagName的时候还没有input标签,所以会报错,所以你点击的时候也没反映,解决办法可以把script标签的放到页面最下面,也可以用window.onload。