私は、その下のスクリプトが派手なクラスを含む2つのdivの高さに等しくなっています。しかし、私の場合、私はdivにある程度の余分な高さを追加する必要があります。他のdivと等しい高さを持つdivにある程度の余分な高さを追加
私はこのグラフィックが、それはかなり良い説明だと思う:ここ
マイスクリプト
$(document).ready(function(){
//set the starting bigestHeight variable
var biggestHeight = 0;
//check each of them
$('.equal_height').each(function(){
//if the height of the current element is
//bigger then the current biggestHeight value
if($(this).height() > biggestHeight){
//update the biggestHeight with the
//height of the current elements
biggestHeight = $(this).height();
}
});
//when checking for biggestHeight is done set that
//height to all the elements
$('.equal_height').height(biggestHeight);
});
非常にシンプル: '$(」equal_height ')[numberOfTarget] .height(largestHeight + 50); ' –
しかし、その特定の' div'をターゲットにしていますか?私は '$( '。equal_height').high(largestHeight + 50);を使用することをお勧めしましたが、これはすべてのdivに適用され、ループ内に置かれれば/ divxの後に' 50px'最後よりも大きいそれがあなたが期待しているものか、コレクションから特定の 'div'を変更したいだけなのかどうかはわかりません。 – NewToJS