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

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

解决方法

回答来自: http://forum.jquery.com/topic/sortables-update-callback-and-connectwith
  1. update: function(e,ui) {
  2. if (this === ui.item.parent()[0]) {
  3. //your code here
  4. }
  5. }

猜你在找的jQuery相关文章