我在droppable div上有这么多的图像,我将它的位置存储在数据库的顶部和左边,现在当我去编辑时,我想将它的预置位应用到那个可拖动的元素,任何人都可以帮忙怎么样我在这个功能中应用它? Draggable对我有用,但我想预先加载它的位置,所以用户可以知道它的最后一个可拖动的位置是什么,谢谢你试过这个可拖动的功能但它没有工作
$(document).ready(function() {
$(".draggable_image").draggable({
}).each(function(ui) {
ui.helper.css('position', 'fixed');
ui.helper.css('top', "<?php echo $drag_string[0]; ?>px");
ui.helper.css('left', "<?php echo $drag_string[1]; ?>px");
});
});