如何删除父项并使子项成为父项

时间:2017-10-12 20:39:30

标签: jquery parent-child

这是我的代码;我想删除父母一个。我需要改变什么?

var options = $.extend(defaults, options);

moveUp = function(obj2, height, paused){
    if(paused) return;

    var obj = obj2.children('ul');
    first = obj.children('li:first').clone(true);

    obj.animate({top: '-=' + height + 'px'}, options.speed, function() {
        $(this).children('li:first').remove();
        $(this).css('top', '0px');
    });

    if(options.animation == 'fade') {
        obj.children('li:first').fadeOut(options.speed);
        obj.children('li:last').hide().fadeIn(options.speed);
    }

    first.appendTo(obj);
};

0 个答案:

没有答案