我的网站中有一个div,名为offer,具有自动高度。我有另一个叫促销的div。我想提一个方法,如果我增加第一个div的高度,第二个div将根据第一个div自动改变高度。我怎样才能做到这一点?感谢
<div class="offers">
</div>
<div class="promotions">
</div>
答案 0 :(得分:1)
演示 - http://jsfiddle.net/victor_007/ma51tap3/
var a = $('.offers').height()
_增加第一个div的高度,第二个div会自动更改高度_
检查兄弟
$('.offers').siblings('.promotions').height(a)
或者检查下一个
$('.offers').next('.promotions').height(a)