如何查找具有某个 JQuery 类的 Div 数量?
有没有办法找到浏览器中显示的class=.class的DIV的数量?
像这样的东西:
$('.class').Numberofobjects();
*显然 Numberofobjects 是组成的。
谢谢!
泰勒
Is there any way to find the number of DIV's displayed in the browser with class=.class?
Something like this:
$('.class').Numberofobjects();
*Obviously Numberofobjects is made up.
Thanks!
Taylor
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要
length
属性(并确保限制标签类型):You want the
length
property (and make sure to constrain the tag type):匹配的类列表
.length 将为您提供与此处 api
http://api.jquery.com/length/< /a>
.length will give you the list of classes that match
api here
http://api.jquery.com/length/