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
    }
}

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...