我有两个清单 - A和B
我希望列表B可以自行排序。 这有效。
我希望列表A包含可以拖到列表B的LI元素。这样可行。
我希望列表A本身也可以排序。 这不起作用。
由于列表A上的.draggable
,它不起作用。如果我删除它,它是可排序的 - 但不能拖动到列表B。
如何让列表A LI
元素既可以在自己的列表中排序,又可以拖放到另一个(可排序的)列表中?
在我的案例中,列表A是ID#list_to_process,列表B是#categories。我认为问题本身虽然相当普遍,但其他人可能会面对这个问题。
jsfiddle:http://jsfiddle.net/RNHxY/
<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,
receive: function(evt, ui) {
ui.item.remove(); # Remove the item in the 'from' list.
# Next 3 lines just there to remove empty UL when no LI's left.
if ( $('#list_to_process li').length == 0) {
$('#list_to_process').remove();
}
}
});
$("#list_to_process").sortable({
revert: true # This isn't working.
});
# Below is over-writing the sortable capability of #list_to_process
$("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>
<li class="to_process" id="left5">5</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>
答案 0 :(得分:2)
您可以使用connectWith
选项解决问题:
此列表中的项目的其他可排序元素的选择器 应该连接到。如果你愿意,这是一种单向关系 要在两个方向连接的项目,connectWith选项 必须在两个可排序元素上设置。
这使您可以链接第一个列表本身,第一个列表和第二个列表之间的两个列表和排序元素。
对于第二个列表,sortable
功能就足够了。
参考:http://api.jqueryui.com/sortable/#option-connectWith
相关脚本如下:
$("#list_to_process").sortable({
connectWith: "#categories",
revert: true
});
$("#categories").sortable({
revert: true,
receive: function (evt, ui) {
if ($('#list_to_process li').length === 0) {
$('#list_to_process').remove();
}
}
});