gpt4 book ai didi

jquery - 可对事件进行排序获取当前可删除项

转载 作者:行者123 更新时间:2023-12-01 01:09:15 25 4
gpt4 key购买 nike

使用over事件时,如何获取当前的droppable?对于当前的 droppable,我的意思是容器暂时悬停在上方。

这是我的代码,可以让事情变得清楚:

$('#widgets-available, #sidebar-drop, #content-drop, #footer-drop').sortable({
start: function(event, ui) {
item = ui.item;
newList = oldList = ui.item.parent().parent();
},
over: function(event, ui) {
//Get Current droppable??
}
}).disableSelection();

});

最佳答案

在类似以下情况的情况下使用“this”

over: function(event, ui) {          
$(this).find('.numdrag').size(); // give the count of elements with class .numdrag in the drop area
}

关于jquery - 可对事件进行排序获取当前可删除项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11765180/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com