计算div中有多少个元素 [英] Count how many elements in a div

查看:250
本文介绍了计算div中有多少个元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个跨度里面的div。有没有一种方法可以计算div中有多少元素,然后将其作为一个值输出。例如,在一个div中有5个跨度,那么它会计数并提醒五个。请在Javascript中。



谢谢。 您可以使用这个功能,它将避免对TextNodes进行计数。
您可以选择计算子女的子女(即递归)。

$ p $ 函数getCount(parent,getChildrensChildren){
var relevantChildren = 0;
var children = parent.childNodes.length;
for(var i = 0; i< children; i ++){
if(parent.childNodes [i] .nodeType!= 3){
if(getChildrensChildren)
relatedChildren + = getCount(parent.childNodes [i],true);
relatedChildren ++;
}
}
返回relatedChildren;
}

用法:

  var element = document.getElementById(someElement); 
alert(getCount(element,false)); //只需一级
alert(getCount(element,true)); //获取所有子节点的数量

试试这里:
吉他小提琴


I have a div with span inside of it. Is there a way of counting how many elements in a div then give it out as a value. For Example there were 5 span in a div then it would count it and alert five. In Javascript please.

Thank you.

解决方案

You can use this function, it will avoid counting TextNodes. You can choose to count the children of the children (i.e. recursive)

function getCount(parent, getChildrensChildren){
    var relevantChildren = 0;
    var children = parent.childNodes.length;
    for(var i=0; i < children; i++){
        if(parent.childNodes[i].nodeType != 3){
            if(getChildrensChildren)
                relevantChildren += getCount(parent.childNodes[i],true);
            relevantChildren++;
        }
    }
    return relevantChildren;
}

Usage:

var element = document.getElementById("someElement");
alert(getCount(element, false)); // Simply one level
alert(getCount(element, true)); // Get all child node count

Try it out here: JS Fiddle

这篇关于计算div中有多少个元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆