jquery。如何获得兄弟姐妹的身高?
我认为对于在 Jquery 方面更有经验的人来说这是一个非常简单的问题。
例如,我们有一个简单的 html 页面,其中有几个 div,其中 3 个具有相同的 css 类“sidebar”,
每个“sidebar”div 都有不同的内容和不同的高度。
我需要比较这个 div 的高度并找到最长的一个。
我知道如何实现比较,但我不知道如何在 Jquery 中将每个 div 存储
在 vairable 或数组中。
I think this is very easy question for someone who is more experienced in Jquery.
for example we have simple html page with a few divs, and 3 of them have the same css class 'sidebar'
Each of this 'sidebar' divs have different content and different height.
I need to compare this divs height and find the longest one.
I know how to realize comparing, but I do not know how in Jquery I can take each of this divs
to store their value in vairable or array.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定为什么到目前为止发布的两个答案都使用
jQuery.each()< /code>
而不是仅仅调用
each()
直接,所以这就是我的建议:将每个高度放入数组中:
或者,只需使用
map ()
:I'm not sure why the two answers posted so far are using
jQuery.each()
rather than just callingeach()
directly, so here's what I would recommend:To put each height into an array:
Or, just use
map()
:当我必须做同样的事情时,这是我使用的代码:
When I had to do the same thing, this is the code I used: