使用时,Sortable.create
我似乎无法获取正在拖动的元素。使用 sortable 时,Sciptaculous 是否没有完全实现所有 Draggable 和 Droppable 功能?
鉴于:
Sortable.create("sortArea", {scroll:window, onChange:orderLi});
function orderLi(){
console.log(this.draggables.each(function(e){if(e.dragging==true){return e};}));
}
我的控制台总是显示所有的可拖动数组。我如何只抓住被拖动的那个?