我想将已删除的项目附加到可排序列表中的目标可放置框中,但我无法将已删除的项目附加到特定元素中。
我的jQuery,
$(".sortable").sortable({
update: function(){
// php update.
}
}).disableSelection();
$( ".droppable" ).droppable({
activeClass: "ui-state-hover",
hoverClass: "ui-state-active",
drop: function( event, ui ) {
var targetElem = $(this).attr("id");
$( this )
.addClass( "ui-state-highlight" )
.find( "p" )
.html( "Dropped! inside " + targetElem );
alert(targetElem);
var container = $( this ).find( "ul.dropped-items" ).css({border:"blue solid 1px"});
container.append(ui.draggable.clone());
ui.draggable.remove();
}
});
丢弃的项目应附加到此元素中,
<ul class="dropped-items">
</ul>
但它只是没有发生。我错过了什么,我怎样才能让它发挥作用?