我試圖拖動拖動的元素,這是拖動元素的克隆,但是當我拖動元素時,它會在頁面中創建另一個元素。這是我的代碼..拖動元素在jQuery中的克隆
jQuery(function() {
jQuery(".component").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});
},
cursor: 'move'
});
jQuery('.ui-layout-center').droppable({
activeClass: 'ui-state-hover',
accept: '.component',
drop: function(event, ui) {
jQuery(this).append(jQuery(ui.draggable).clone().draggable());
}
});
});
是否有任何缺少的命令,使每一個拖動一個新的克隆?
好的謝謝。但我做到了,我想要 – Jackson 2012-01-09 11:32:23