我做了一个jQuery拖放功能。但是里面有一个小错误。我找到了一个函数,它有一条警告消息,但我不想要那个。我只想删除元素。这是我的代码:
jQuery(function() {
jQuery(".draggable").draggable({
// use a helper-clone that is append to 'body' so is not 'contained' by a pane
helper: function () { return jQuery(this).clone().appendTo('body').css('zIndex',5).show(); }
, cursor: 'move'
});
jQuery('.ui-layout-center').droppable({
accept: '.draggable',
drop: function () { alert('The Draggable was Dropped!'); }
});
});