如何查找具有某个 JQuery 类的 Div 数量?

发布于 2024-11-06 19:54:35 字数 172 浏览 0 评论 0原文

有没有办法找到浏览器中显示的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

〃安静 2024-11-13 19:54:35

您需要 length 属性(并确保限制标签类型):

$('div.class').length

You want the length property (and make sure to constrain the tag type):

$('div.class').length
深海夜未眠 2024-11-13 19:54:35

匹配的类列表

$('.class').length

.length 将为您提供与此处 api

http://api.jquery.com/length/< /a>

.length will give you the list of classes that match

$('.class').length

api here

http://api.jquery.com/length/

夏夜暖风 2024-11-13 19:54:35
<html>
<head>
    <script type="text/javascript" src="jquery-1.6.1.min.js"></script>
    <script type="text/javascript">
        $(document).ready(function() {
            alert($("div.a").length);
        });
    </script>
</head>
<body>
    <input type="button" id="mybutton" value="Click" />
    <div class="a">
    </div>
    <div class="a">
        <div class="a">
        </div>
    </div>
    <div class="a">
    </div>
</body>

<html>
<head>
    <script type="text/javascript" src="jquery-1.6.1.min.js"></script>
    <script type="text/javascript">
        $(document).ready(function() {
            alert($("div.a").length);
        });
    </script>
</head>
<body>
    <input type="button" id="mybutton" value="Click" />
    <div class="a">
    </div>
    <div class="a">
        <div class="a">
        </div>
    </div>
    <div class="a">
    </div>
</body>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文