我有2个div标签:<div class="right">
和<div class="left">
右侧类和左侧类都有高度属性为auto。我想要height of left = height of right
。对不起,我没有足够的杠杆来发布代码。
答案 0 :(得分:2)
我认为你可以做$(".left").height($(".right").height())
。
答案 1 :(得分:1)
您可以按height()
获得一个元素的高度。
并按
设置一个元素的高度 css('height', 'the height')
这样:
$('.right').css('height', $('.left').height() + 'px');
<强>更新强>
.height(value)
更好:)