我想得到一些div的数量。这是我的页面结构图片。我想获得cityUnderText div的数量。
我正在使用这些脚本代码,但我得到 0 但我需要 6 。
var h = $("div.cityUnderText").length;
alert(h);
var h = $(".cityUnderText").length;
alert(h);
答案 0 :(得分:1)
尝试$(".cityundertext").length
。
答案 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倍)。