我希望在将项目放入div时执行alert('dropped');
。 drop
事件处理程序似乎无法运行。
$('.dropme').sortable({
connectWith: '.dropme',
cursor: 'pointer'
}).droppable({
accept: '.button',
activeClass: 'highlight',
drop: function(event, ui) {
var $li = $('<div>').html('List ' + ui.draggable.html());
$li.appendTo(this);
alert('dropped');
}
});
以下是小提琴的链接:http://jsfiddle.net/8snSf/2195/
建议一如既往地受到赞赏。
答案 0 :(得分:2)