Scriptaculous Sortable.create - 无法挂钩拖动的元素
使用 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};}));
}
我的控制台总是显示所有可拖动的数组。 如何只抓取被拖动的那一个?
When using Sortable.create
I can't seem to get the element that is being dragged. Does Sciptaculous not fully implement all Draggable and Droppable features when you use sortable?
Given:
Sortable.create("sortArea", {scroll:window, onChange:orderLi});
function orderLi(){
console.log(this.draggables.each(function(e){if(e.dragging==true){return e};}));
}
My console always shows all the array of draggables. How do I only grab the one that is being dragged?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
onChange 函数实际上获取传入元素的句柄。
The onChange function actually gets a handle to the element passed in.