检查有多少div有某个类

时间:2013-09-18 05:15:55

标签: jquery html

我需要检查有多少div具有某个类“可见”。我这样做了,但这显然是错误的:

var select = $(".container div:not(.row)").hasClass("visible");
alert("there are " + select.length + "divs with the class visible");

我怎样才能实现我想要做的事情?

2 个答案:

答案 0 :(得分:0)

在一个地方做到:

alert("there are " + $(".container div.visible:not(.row)").length + "divs...");

答案 1 :(得分:0)

试试这样。

alert("there are " + $(".visible").size() + " divs with the class visible");