jquery可排序的connectWith调用update方法两次

前端之家收集整理的这篇文章主要介绍了jquery可排序的connectWith调用update方法两次前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在下面的代码中,当一个项目从列表sortable1移动到sortable2时,更新函数调用两次。虽然我只需要调用函数一次:
$("#sortable1 tbody,#sortable2 tbody").sortable({
    connectWith: '.connectedSortable tbody',helper: fixHelper,handle : '.handle',update : function () {
        var order = $('#sortable1 tbody').sortable('serialize');
    }    
}).disableSelection();

解决方法

答案: http://forum.jquery.com/topic/sortables-update-callback-and-connectwith
update: function(e,ui) {
    if (this === ui.item.parent()[0]) {
        //your code here
    }
}
原文链接:https://www.f2er.com/jquery/183252.html

猜你在找的jQuery相关文章