Home > php教程 > PHP源码 > JavaScript获取ul中li个数的方法_javascript技巧

JavaScript获取ul中li个数的方法_javascript技巧

PHP中文网
Release: 2016-05-25 16:59:36
Original
1223 people have browsed it

这篇文章主要介绍了JavaScript获取ul中li个数的方法,涉及javascript针对页面HTML元素的获取及属性操作相关技巧,需要的朋友可以参考下

本文实例讲述了JavaScript获取ul中li个数的方法。分享给大家供大家参考,具体如下:

有这样一段HTML代码:

<ul id="mycarousel">
    <li><img src=01_MED.jpg height=80 width=100/></li>
    <li><img src=02_MED.jpg height=80 width=100/></li>
    <li><img src=03_MED.jpg height=80 width=100/></li>
    <li><img src=04_MED.jpg height=80 width=100/></li>
</ul>
Copy after login

  • 的数量是不固定的,现在需要通过javascript获取li的数量。

    把getElementById和getElementsByTagName结合起来使用就可以实现:

    temp = document.getElementById(&#39;mycarousel&#39;);
    lis = temp.getElementsByTagName(&#39;li&#39;);
    alert(lis.length); //显示li元素的个数
    Copy after login

    或者直接得到:

    lis = document.getElementById(&#39;mycarousel&#39;).getElementsByTagName(&#39;li&#39;).length;
    alert(lis); //显示li元素的个数
    Copy after login

  • Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Latest Articles by Author
    Popular Recommendations
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template