使用 jquery height 检查任一元素的高度是否为零
我已经得到了这个
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
.filter
方法来减少集合。.filter
对集合中的每个元素执行给定的函数。如果函数返回true
,则保留该元素。否则 (false
),该元素将被丢弃。You can use the
.filter
method to reduce the collection..filter
executes the given function for each element in the collection. If the function returnstrue
, the element is kept. Otherwise (false
), the element is discarded.