JQuery UI可排序在接收之前禁用更新功能

前端之家收集整理的这篇文章主要介绍了JQuery UI可排序在接收之前禁用更新功能前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 jquery ui来处理您可以在其中排序的列表,然后在另一个列表之间进行排序.我正在使用更新进行排序,并且工作正常.当我在中间排序时,我只想调用接收函数而不是更新.目前,更新被调用,然后接收被调用.在列表之间进行排序时,有没有办法跳过更新调用
<script>
            $= jQuery
            $(function() {
                $( "#sortable1).sortable({
                    connectWith: ".connectedSortable",placeholder: "ui-state-highlight",update: function(event,ui) {processSortWithin(ui.item.attr("id"),ui.item.index()); },receive: function(event,ui){ 
                        processSortBetween(ui.item.attr("id"),ui.item.index(),ui.sender.attr("id"));
                    }
                }).disableSelection();
            });

        </script>

解决方法

回答来自: 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/177666.html

猜你在找的jQuery相关文章