我使用這個js使兩個div與靜態內容工作正常,但是當圖像/被在動態高度加載的內容,因爲我想象的劇本是被設置爲0像素相同的高度在內容被拉出之前開火。有沒有一種方法可以延遲這種發射幾秒鐘的時間,以便設置正確的高度?嘗試超時功能,但不可能得到它的工作jQuery的延遲腳本
// make stuff the same height
equalheight = function (container) {
var currentTallest = 0,
currentRowStart = 0,
rowDivs = new Array(),
$el,
topPosition = 0;
$(container).each(function() {
$el = $(this);
$($el).height('auto')
topPostion = $el.position().top;
if (currentRowStart != topPostion) {
for (currentDiv = 0; currentDiv < rowDivs.length; currentDiv++) {
rowDivs[currentDiv].height(currentTallest);
}
rowDivs.length = 0; // empty the array
currentRowStart = topPostion;
currentTallest = $el.height();
rowDivs.push($el);
} else {
rowDivs.push($el);
currentTallest = (currentTallest < $el.height()) ? ($el.height()) : (currentTallest);
}
for (currentDiv = 0; currentDiv < rowDivs.length; currentDiv++) {
rowDivs[currentDiv].height(currentTallest);
}
});
}
$(window).load(function() { equalheight('.equal'); });
$(window).resize(function() { equalheight('.equal'); });
您正在使用AJAX來加載內容? –
你可能想看看https://github.com/desandro/imagesloaded –
如果你不使用$(文件)。就緒(),然後就用這個包裝你的代碼,看看會發生什麼 –