我正在实现 JQuery UI Draggable() 对象并添加了 cursorAt() 对象。然后我注意到我需要将可拖动对象居中,但不知道如何。我可以将顶部和左侧设置为 0,但我想将框(可拖动对象)居中。那么如何获取可拖动对象的宽高呢?
$('#gridColumn1').draggable({
appendTo: 'body',
helper: 'clone',
start: function(e, ui) { ui.helper.addClass("dragEffect"); },
//cursorAt: { top: 0, left: 0 }
cursorAt: top: Math.floor(??? / 2), left: Math.floor(??? / 2)
});