0

大家好,我想制作一个可拖动和调整大小的元素。出于某种原因,我想将元素定位在 div 父级内的某个位置。但我无法移动包含从另一个我想拖动的图像克隆的 ui-wrapper。总是 :

top:auto
left:auto

我尝试过这种模式:

newDiv = $(this).clone().appendTo('#space-drawable-div').resizable({
    aspectRatio: true,
    maxWidth: 212,
    maxHeight: 220
}).parent('.ui-wrapper').draggable({
    containment: "parent"
}).parent().removeAttr('style').css('top', '10px').css('left', '20px');

我有一个图像,它的父级是 'ui-wrapper'

ui 包装器 css:

height: 220px;
left: auto;
margin: 0;
overflow: hidden;
position: relative;
top: auto;
width: 157px;
4

1 回答 1

0

设置cssposition应该可以解决问题

newDiv = $(this).clone().appendTo('#space-drawable-div').resizable({
aspectRatio: true,
maxWidth: 212,
maxHeight: 220
}).parent('.ui-wrapper').draggable({
containment: "parent"
}).parent().removeAttr('style').css('top', '10px').css('left', '20px').css('position','relative');
于 2013-05-22T16:56:32.807 回答