使用 jquery height 检查任一元素的高度是否为零

发布于 2025-01-06 04:50:14 字数 230 浏览 0 评论 0原文

我已经得到了这个

    if ($("#sidebar .box_cuerpo").height() == "0") {
           //blaaa
    }

但有时在网站内的其他页面上有多个“#sidebar .box_cuerpo”元素...而且有些元素的高度不是 0。

是否可以检查所有元素以及是否几乎有一个元素的高度为 0那个说法是真的吗?

I've got this

    if ($("#sidebar .box_cuerpo").height() == "0") {
           //blaaa
    }

But sometimes on other pages inside site there are more than one "#sidebar .box_cuerpo " elements... and also some are not height 0.

is it possible to check on all elements and if almost one is height 0 that statement it's true?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

南笙 2025-01-13 04:50:14

您可以使用 .filter 方法来减少集合。
.filter 对集合中的每个元素执行给定的函数。如果函数返回true,则保留该元素。否则 (false),该元素将被丢弃。

if ($("#sidebar .box_cuerpo").filter(function() {
    return $(this).height() === 0;
}).length) {
    //blaaa
}

You can use the .filter method to reduce the collection.
.filter executes the given function for each element in the collection. If the function returns true, the element is kept. Otherwise (false), the element is discarded.

if ($("#sidebar .box_cuerpo").filter(function() {
    return $(this).height() === 0;
}).length) {
    //blaaa
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文