总而言之,我知道我们可以实现一个可拖动的元素,只需简单地调用.draggable
jquery ui 中的方法。这是一个示例,包括连接到可排序的。
$(".draggable").draggable({
helper : function(){
//return something dom.},
cursor : 'move',
connectToSortable : '.sortableLayoutSection'});
$(".sortableLayoutSection").sortable({
appendTo : parent,
containment : "parent",
cursor : "pointer",
placeholder : 'li-placeholder',
forcePlaceholderSize : false
});
但我的问题是我怎么知道可拖动项目真的落入指定的容器(在这个例子中是类名为的元素.sortableLayoutSection
)?谢谢。
更新
$(".sortableLayoutSection").sortable({
appendTo : parent,
containment : "parent",
cursor : "pointer",
placeholder : 'li-placeholder',
forcePlaceholderSize : false,
receive: function( event, ui ) {alert('ok.got something.')}
});