0

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

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

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

4

2 回答 2

0

一次完成:

alert("there are " + $(".container div.visible:not(.row)").length + "divs...");
于 2013-09-18T05:18:18.947 回答
0

像这样试试。

alert("there are " + $(".visible").size() + " divs with the class visible");
于 2013-09-18T05:35:16.277 回答