获得一些div的孩子的div的数量

时间:2012-05-05 22:06:27

标签: javascript jquery

我想得到一些div的数量。这是我的页面结构图片。我想获得cityUnderText div的数量。

enter image description here

我正在使用这些脚本代码,但我得到 0 但我需要 6

var h = $("div.cityUnderText").length;
alert(h);

var h = $(".cityUnderText").length;
alert(h);

3 个答案:

答案 0 :(得分:1)

尝试$(".cityundertext").length

JavaScript is a case-sensitive language

答案 1 :(得分:1)

var count=$(".cityundertext").size(); // jquery's method

OR

var count=$(".cityundertext").length; 

或更具体

var count=$("#content_pnlDestinations .cityundertext").size(); // jquery's method

OR

var count=$("#content_pnlDestinations .cityundertext").length; 

答案 2 :(得分:0)

你可以使用比jQuery更快的document.querySelectorAll('div > div').length,因为它是原生的(快2倍到3倍)。