gpt4 book ai didi

jQuery Droppable,让元素被删除

转载 作者:行者123 更新时间:2023-12-03 21:26:30 25 4
gpt4 key购买 nike

一个小问题,希望有一个简单的答案,我正在使用 jQuery 可拖动和可放置的项目将项目放入停靠栏。使用以下代码进行转换。

$("#dock").droppable({
drop: function(event, ui) {
//Do something to the element dropped?!?
}
});

但是我找不到一种方法来获取实际删除的元素,所以我可以做点什么。这可能吗?

最佳答案

来自drop event documentation :

This event is triggered when anaccepted draggable is dropped 'over'(within the tolerance of) thisdroppable. In the callback, $(this)represents the droppable the draggableis dropped on. While ui.draggable representsthe draggable.

所以:

$("#dock").droppable({
drop: function(event, ui) {
// do something with the dock
$(this).doSomething();

// do something with the draggable item
$(ui.draggable).doSomething();
}
});

关于jQuery Droppable,让元素被删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2975091/

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