0

我有一个像这样设置的可拖动事件:

$(ids.label).draggable({
    containment: ids.wrapper,
    revertDuration: 100,
    revert: function(event) {
        $(this).data("draggable").originalPosition = {
            top:  $(this).data('origionalTop'),
            left: $(this).data('origionalLeft'),
        }
        return !event;
    },
    ...

现在,我希望能够在另一个函数中从外部调用还原函数。如何才能做到这一点?这是我正在尝试做的事情(目前不起作用):

$(ids.label).each(function() {
    for(var iter = 0; iter < wrong.length; ++ iter) {
        if($(this).html() == wrong[iter]) {
            // Something along these lines.
            $(this).draggable.revert(); // This is the line in question
        }
    }
});

谢谢!

4

1 回答 1

3

我不完全确定您为什么需要从外部调用它。但这可能会有所帮助:

代替:

$(this).draggable.revert(); // This is the line in question

尝试:

$(this).draggable('option','revert')();
于 2012-06-15T18:23:43.790 回答