我想在用户删除项目时执行效果。我怎样才能做到这一点?让我们说我想使用效果"反弹"。
var drop1 = 1;
var drop2 = 2;
var liit = 3;
var counter = 0;
$('.container').droppable({
accept: '.item',
drop: function(event, div) {
counter++;
// here I would like to put a function that
// the dropped element bounces up and down before the alert.
if (counter == hit1) {
alert("You dropped on item");
}
else if (counter == hit2) {
alert("You dropped another item");
}
}
});
答案 0 :(得分:0)
我相信你正在寻找下降事件。
可以在此页面找到该文档。
http://api.jqueryui.com/droppable/#event-drop
$( ".item" ).on( "drop", function( event, ui ) {
alert("You dropped on item");
} );