我想检测一个可排序的项目何时被拖出容器(或者已经被丢弃到容器外),所以我可以调用一个函数,如果它已被选中并放入同一容器类中。
$(".container").sortable({
connectWith: ".button",
tolerance: "pointer",
stop: function(event, ui) {
if(!not-dragged-outside-of-container) {
// a function here
}
}
});
$(".button").sortable({
connectWith: ".container",
tolerance: "pointer"
});