我一直在一個網站,我需要平等列。我正在使用下面的代碼:Equal Columns jquery
<script type="text/javascript">
(function() {
function equalHeights(selector) {
var maxHeight = 0;
function calcEqualHeight() {
var el = $(this);
maxHeight = el.height() > maxHeight ? el.height() : maxHeight;
}
selector.each(calcEqualHeight).height(maxHeight);
}
equalHeights($('.exampleclass1'));
equalHeights($('.exampleclass2'));
})();
</script>
問題是,有時當頁面加載時,高度並不總是正常工作和內容重疊。我想知道如何改變這個來計算頁面加載的高度?
你檢查控制檯? – CaptainHere
是檢查控制檯,沒有錯誤 – CharlyAnderson