我有两件事。
我正在寻找有人为我解决这个问题,因为我现在已经陷入困境。
这是我的jsfiddle与最后一个列表项绝对底部: http://jsfiddle.net/evanmoore/QPQ8Z/
这是jquery等于列高度,最后一个列表项绝对底部 http://jsfiddle.net/evanmoore/mCang/2/
var maxHeight = 0;
function setHeight(column) {
//Get all the element with class = col
column = $(column);
//Loop all the column
column.each(function() {
//Store the highest value
if($(this).height() > maxHeight) {
maxHeight = $(this).height()+2;
}
});
//Set the height
column.height(maxHeight);
}
$(document).ready(function() {
setHeight('.wrapper');
});
答案 0 :(得分:2)
最初将position
的{{1}}设置为#disclosure li.notes
。这将使较高的列被推下,因此您可以获取maxHeight。然后,在得到该数字后,将其设置回绝对值,因此它可以是relative
。