我有以下代码来为动态 div 上下设置动画。这个想法是,可能有任意数量的 div 需要在堆栈上上下移动,与上下 div 交换位置。一旦处于他们的新位置,我需要能够抓住那个新的重新定位的位置。以下代码一次有效,但是一旦下 div 向上移动并且上 div 向下移动(交换点)到新位置,它们就会停止工作。我该如何设置它,以便他们继续向上遍历堆栈,在他们去的时候交换紧邻上方或下方的堆栈?一旦完成更新数据库,我还需要知道新职位。我一直在到处寻找,但似乎找不到如何做到这一点。任何帮助将非常感激。
$('.editUp', this).click(function() {
thisRowHt = $(this).parents('.rowCont').outerHeight();
upperRowHt = $(this).parents('.rowCont').prev().outerHeight();
$(this).parents('.rowCont').animate({'top': '-=' + thisRowHt + 'px'});
$(this).parents('.rowCont').prev().animate({'top': '+=' + upperRowHt + 'px'});
return false;
});
$('.editDown', this).click(function() {
thisRowHt = $(this).parents('.rowCont').outerHeight();
lowerRowHt = $(this).parents('.rowCont').next().outerHeight();
$(this).parents('.rowCont').animate({'top': '+=' + lowerRowHt + 'px'});
$(this).parents('.rowCont').next().animate({'top': '-=' + thisRowHt + 'px'});
return false;
});