我想检测一个可排序项目何时被拖出容器(或被拖放到容器外),因此如果它已被选中并放在同一个容器类中,我可以调用一个函数。
提琴手
$(".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"
});