1

我想检测一个可排序项目何时被拖出容器(或被拖放到容器外),因此如果它已被选中并放在同一个容器类中,我可以调用一个函数。

提琴手

http://jsfiddle.net/u3TH4/5/

$(".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"
});
4

1 回答 1

1

使用接收和删除回调。该项目位于作为第二个参数传递的 ui 对象中:http: //api.jqueryui.com/sortable/#event-remove

于 2013-10-02T16:41:45.690 回答