为什么要document.getElementById("ul")[0]呢?​不是只有一个<ul>标签吗?奇怪的是去掉[0]之后获取不到<ul>

来源:10-1 编程挑战

金牌厨师

2020-04-03 15:25

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>实践题 - 选项卡</title>

    <style type="text/css">

     /* CSS样式制作 */  

    *{padding:0px;margin: 0px;font:12px normal "microsoft yahei";}

    #table{height:200px;width: 300px;}

    #table ul{border-bottom:2px solid brown;list-style: none;height: 30px;}

    #table ul li{cursor:pointer;float:left;list-style:none;height:28px;line-height:28px;margin:0px 3px;border:1px solid #aaaaaa;border-bottom:none;display:inline-block;width:60px;text-align: center;}

    #table ul li.active{border-top:2px solid brown;border-bottom: 2px solid #fff;}

    #table div{height:170px;line-height: 40px;border: 2px solid brown;border-top:none;}

    .hide{display:none;}

    </style>

    <script type="text/javascript">

         

    window.onload = function() {

        var table=document.getElementById("table");

        var ul=table.getElementsByTagName("ul")[0];

        var li=ul.getElementsByTagName("li");

        var div=table.getElementsByTagName("div");


        for(var i=0,len=li.length;i<len;i++)

        {

          li[i].index=i;

          li[i].onclick=function()

          {

            for(var j=0;j<len;j++)

            {

              li[j].className="";

              div[j].className="hide";

            }

            this.className="active";

            div[this.index].className="";

          }

        }

    }

    

    

    </script>

 

</head>

<body>

<!-- HTML页面布局 -->

<div id="table">

    <ul>

        <li class="active">1</li><li>2</li><li>3</li>

    </ul>

</div>


 

</body>

</html>


写回答 关注

1回答

  • 奋斗的渣渣
    2020-04-09 20:02:56

    getElementsByTagName 的返回值是个数组,数组里面只有一个元素,访问数组元素要用数组的下标,第一个元素的数组下表index 就是0

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题