jquery - 将LI从UL A拖到UL B并从UL A中删除?

时间:2013-04-13 14:05:56

标签: jquery html-lists draggable jquery-ui-sortable

我有两个列表,第二个列表是sortable,我可以从第一个列表拖到第二个列表,但无法弄清楚如何从第一个列表中删除。

如果我删除了li,但项目(helper: "clone")确实被删除了,但拖放操作效果不佳(左转,不顺畅)。

(奖励积分 - 空的时候也删除左边的UL)

enter image description here

小提琴:http://jsfiddle.net/Nme9a/

<html>
  <head>
    <style>
    #categorizer { padding: 2px; }
    #list_to_process, #categories  { color: blue; background-color: green; border: solid; border-width: 4px }
    ul { padding: 10px; margin: 50px; float:left; list-style:none; }
    li { color: yellow; padding: 25px 80px; cursor: move; }
    li:nth-child(even) { background-color: #000 }
    li:nth-child(odd) { background-color: #666 }
  </style>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
    <script type="text/javascript">
      $(document).ready( function() {
        $("#categories").sortable({
          revert: true
        });
        $("li.to_process").draggable( {
          connectToSortable: "#categories",
          helper: "clone",
          revert: "invalid"
        });
      });
    </script>

  </head>
  <body>
    <div id="categorizer">
      <ul id="list_to_process">
        <li class="to_process" id="left1">1</li>
        <li class="to_process" id="left2">2</li>
        <li class="to_process" id="left3">3</li>
        <li class="to_process" id="left4">4</li>
      </ul>
      <ul id="categories">
        <li id="righta">a</li>
        <li id="rightb">b</li>
        <li id="rightc">c</li>
        <li id="rightd">d</li>
        <li id="righte">e</li>
      </ul>
    </div>
  </body>
</html>

1 个答案:

答案 0 :(得分:3)

您可以将“receive”选项中的回调传递给sortable(),如下所示:

  $(document).ready( function() {
    $("#categories").sortable({
      revert: true,
      receive: function(evt, ui) {
        ui.item.remove();
      }
    });
    $("li.to_process").draggable( {
      connectToSortable: "#categories",
      revert: "invalid",
      helper: "clone"
    });
  });

[来自Michael的编辑]

请注意,我还添加了:

$('#list_to_process li').length == 0) {
  $('#list_to_process').remove();
}
ui.item.remove();之后

,以便仍然有填充和边框的空UL,即

enter image description here

将被移除。