2
我想alert('dropped');
執行時,我將項目放入div。 drop
事件處理程序似乎不起作用。jquery ui拖放 - 調用下降功能
$('.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/
諮詢感謝一如既往。
非常感謝你, – Smudger
沒問題,很高興幫助 –