1
$(".drag").draggable({
helper: 'clone',
appendTo: "body"
});


$( ".drop" ).droppable({
over: function(event, ui) {
       $(ui.draggable).css({width:'30px',height:'30px'});
        },

drop: function( event, ui ) {
    if($(ui.draggable).parent() !==$(this)){
        $(ui.draggable).appendTo($( this ));
        $(ui.draggable).tooltip({ disabled: true });
        $(ui.draggable).css({float:'left'});
      }
      }});

当我将鼠标悬停在可放置区域上时,我试图更改拖动的克隆项目的大小,但保持原来的大小相同(这样当我在正确的放置区域上时,附加到鼠标的项目会缩小)。此代码更改原始但不更改克隆。有什么建议么?

4

1 回答 1

3

这完成了这项工作。直接访问克隆助手。

$( ui.helper).css({width:'30px',height:'30px'});
于 2013-02-28T01:25:26.717 回答