我有几个嵌套的可调整大小的div需要调整大小以适应孩子的大小。 一切正常,直到我尝试调整其中一个外部div(垂直)然后它被卡住。
这是fiddle。
$(function () {
$('.block').resizable();
$('.block').resize(resize_handler);
});
function checkChildren(object) {
$(object).children(".block").each(function (index, item) {
var itemH = $(item).position().top + $(item).height();
var itemW = $(item).position().left + $(item).width();
if ($(object).width() < itemW) {
$(item).width($(object).width());
checkChildren($(item));
}
if ($(object).height() < itemH) {
$(item).height($(object).height());
checkChildren($(item));
}
});
}
function checkParent(e) {
var object = $(e);
var par = object.parent();
var totalW = object.width() + object.position().left;
var totalH = object.height() + object.position().top;
if (totalH > par.height()) {
par.height(totalH);
checkParent(par);
}
if (totalW > par.width()) {
par.width(totalW);
checkParent(par);
}
}
function resize_handler(e, ui) {
e.stopPropagation();
var object = $(this);
var par = object.parent();
if (par.hasClass("block")) {
checkParent(object);
}
if (object.children('.block').length > 0) {
checkChildren(object);
}
}
答案 0 :(得分:0)
当然你已经想过这个但是如果它的高度太接近它的孩子的高度,你可以尝试限制父div的可调整大小。意思是当它即将与孩子的边缘接触时,不要让它更接近。也许在几个像素的孩子周围保持一个缓冲区,这会迫使用户先调整孩子,然后才能调整父级。
只是一个想法。