2

我有两个清单

<ul class="sortable" id="list-A">
   <li id="1">Value 1 </li>
   <li id="2">Value 2 </li>
   <li id="3">Value 3 </li>
</ul>

<ul class="sortable" id="list-B">
   <li id="4">Value 1 </li>
   <li id="5">Value 2 </li>
   <li id="6">Value 3 </li>
</ul>

像这样连接

     $( ".sortable" ).sortable({
       connectWith: '.sortable',
       placeholder: "widget-highlight"
     });

我知道如何通过保存订单将一个有序列表保存到数据库,但是如果用户将项目从列表 a 移动到列表 b,如何保存

我想保存项目位置但是如何

4

1 回答 1

5

使用.sortable().receive()回调,获取被删除节点的.index()via ui.item.index()。你如何在 PHP 中处理它取决于你的 ajax 处理程序是如何设置的。

$( ".sortable" ).sortable({
   connectWith: '.sortable',
   placeholder: "widget-highlight",
   // Receive callback
   receive: function(event, ui) {
     // The position where the new item was dropped
     var newIndex = ui.item.index();
     // Do some ajax action...
     $.post('someurl.php', {newPosition: newIndex}, function(returnVal) {
        // Stuff to do on AJAX post success
     });
   },
   // Likewise, use the .remove event to *delete* the item from its origin list
   remove: function(event, ui) {
     var oldIndex = ui.item.index();
     $.post('someurl.php', {deletedPosition: oldIndex}, function(returnVal) {
        // Stuff to do on AJAX post success
     });

   }
 });

上面的例子会将被删除节点的新列表位置发送到$_POST['newPosition']

事件在.sortable()API 文档中有完整描述

于 2012-11-23T02:11:11.693 回答