javascript - jQueryJS - Count elements within element - Stack Overflow

In jQuery or JS I need to count the amount of DIV elements inside my parent DIV called cont? I've

In jQuery or JS I need to count the amount of DIV elements inside my parent DIV called cont? I've seen similar questions here on StackOverflow and have tried the following.

<div class="b-load" id="cont">
    <div>
    <img src="page2.jpg" alt=""/>
    </div>
    <div>
    <img src="page3.jpg" alt="" />
    </div>
    <div>
    <img src="page4.jpg" alt="" />
    </div>
    <div>
    <img src="page5.jpg" alt="" />
    </div>
</div>

function countPages() {
    var maindiv = document.getElementById('cont');
    var count = maindiv.getElementsByTagName('div').length;
    alert(count);
}

The child DIV's are dynamically produced, so I need to count them after the page has finished loading. The problem I have is the function I wrote counts 13 DIV's and in this example, there should only 4!! Any help gratefully received..

In jQuery or JS I need to count the amount of DIV elements inside my parent DIV called cont? I've seen similar questions here on StackOverflow and have tried the following.

<div class="b-load" id="cont">
    <div>
    <img src="page2.jpg" alt=""/>
    </div>
    <div>
    <img src="page3.jpg" alt="" />
    </div>
    <div>
    <img src="page4.jpg" alt="" />
    </div>
    <div>
    <img src="page5.jpg" alt="" />
    </div>
</div>

function countPages() {
    var maindiv = document.getElementById('cont');
    var count = maindiv.getElementsByTagName('div').length;
    alert(count);
}

The child DIV's are dynamically produced, so I need to count them after the page has finished loading. The problem I have is the function I wrote counts 13 DIV's and in this example, there should only 4!! Any help gratefully received..

Share Improve this question asked Dec 22, 2011 at 1:01 TheCarverTheCarver 19.7k27 gold badges103 silver badges153 bronze badges 4
  • 3 it shows 4 correctly - jsfiddle/QSurJ – Zoltan Toth Commented Dec 22, 2011 at 1:03
  • All I'm doing different is using [body onload="countPages()"] – TheCarver Commented Dec 22, 2011 at 1:07
  • I just changed getElementsByTagName('div') to getElementsByTagName('img') and I get the correct number but I'm still shocked that I get a different number than the fiddle example!! – TheCarver Commented Dec 22, 2011 at 1:12
  • maybe you have somewhere on your page a second element with id=cont ? – Zoltan Toth Commented Dec 22, 2011 at 1:14
Add a ment  | 

4 Answers 4

Reset to default 5
console.log($("#cont div").length);
var maindiv = document.getElementById('cont');
var count = maindiv.children.length;
alert(count);

Try this

$(function(){
   var mainDiv = $('#cont');
   var childDivCount = mainDiv.find('div').length;
   });

By the way, this is jQuery's syntax (one of them anyways) for document ready. This will only fire after your page has pleted loading.

No need to use jQuery here. If you only need to know the amount of childElements, you can use node.childElementCount

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743676662a4488680.html

相关推荐

  • javascript - jQueryJS - Count elements within element - Stack Overflow

    In jQuery or JS I need to count the amount of DIV elements inside my parent DIV called cont? I've

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信