在下面的代码中,当一个项目从列表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 } }