我需要检查有多少div具有某个类“可见”。我这样做了,但这显然是错误的:
var select = $(".container div:not(.row)").hasClass("visible");
alert("there are " + select.length + "divs with the class visible");
我怎样才能实现我想要做的事情?
答案 0 :(得分:0)
在一个地方做到:
alert("there are " + $(".container div.visible:not(.row)").length + "divs...");
答案 1 :(得分:0)
试试这样。
alert("there are " + $(".visible").size() + " divs with the class visible");