jquery – 将DIV高度设置为与另一个DIV相等

前端之家收集整理的这篇文章主要介绍了jquery – 将DIV高度设置为与另一个DIV相等前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个DIV,.sidebar和.content,我想设置.sidebar与.content保持相同的高度.

我尝试过以下操作:

$(".sidebar").css({'height':($(".content").height()+'px'});

$(".sidebar").height($(".content").height());

var highestCol = Math.max($('.sidebar').height(),$('.content').height());
$('.sidebar').height(highestCol);

这些都没有工作.对于.content,我没有任何高度,因为根据内容增加或减少.

请帮帮我.我今天要完成一个网页,这个(简单的)事情让我头痛.

谢谢!

解决方法

你的第一个例子不工作的原因是因为打字错误
$(".sidebar").css({'height':($(".content").height()+'px'});

应该是

$(".sidebar").css({'height':($(".content").height()+'px')});

你在.content选择器之前缺少一个尾随括号.

原文链接:https://www.f2er.com/jquery/180496.html

猜你在找的jQuery相关文章