與標題中一樣,如何防止2個列表之間的重複。我正試圖阻止#selected列表中的重複項。我懷疑它在接收事件中完成,但我沒有任何運氣。jquery可排序 - 防止2個列表之間的重複
$(function() {
$("#options").sortable({
connectWith: $("#selected"),
helper: 'original',
revert: true,
tolerance: "pointer",
});
$("#selected").sortable({
connectWith: $("#options"),
helper: 'original',
receive: function (event, ui) {
},
});
$("#options,#selected").disableSelection();
$("#SkillGroups").change(function() {
$.ajax({
type: "POST",
url: "/Contractor/Contractor/GetSkillsBySkillGroup",
data: { skillGroupId: $("#SkillGroups").val() },
success: function (result) {
$loadList(result);
}
})
});
});
非常好。不過,我想知道爲什麼我建議的功能沒有做到它所要做的。 – Todd 2013-03-30 02:23:13
請接受將問題標記爲已解決的解決方案... :) – 2014-08-16 11:49:55