我们如何在jquery中为draggable元素应用pre位置?

时间:2018-04-13 06:15:20

标签: jquery jquery-ui jquery-ui-draggable

我在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");
    });
    });

0 个答案:

没有答案