2

有点奇怪,这个。我有两个 jquery 手风琴实体,单击一个手风琴中的一个项目时,我想将其动态添加到第二个手风琴中,并将其隐藏在原始文件中。

目前,这在从 A 到 B 的移动以及从 B 到 A 的移动时效果很好,但是当我将一个项目移回原始手风琴时,任何后续从 A 到 B 的移动都会搞砸。

这是我的意思的 jsfiddle 示例http://jsfiddle.net/waveydavey/CAYth/。注意我完全意识到代码很丑 - 我只是在学习这些东西。请随意提出10倍更好的方法。请执行下列操作:

  • 运行小提琴。
  • 单击每个项目的“+”以移动到手风琴 2
  • 一切都很好。

现在这样做:

  • 运行小提琴。
  • 单击任何“+”以移动到第二个手风琴
  • 单击移动项目上的“x”,它会重新出现在第一组中
  • 单击任何“+”项以添加到第二组
  • 手风琴项目的显示完全混乱

任何建议将不胜感激。

jsfiddle 代码是:

    $(function() {
 // create accordion entities
 $('#avAccordion').accordion({
        collapsible: true,
        autoHeight: false,
        active: false
    });
 $('#assignedAccordion').accordion({
        collapsible: true,
        autoHeight: false,
        active: false
    });
 $('.accordionAdd').click(function(){
        // destroy the accordion, prior to rebuilding
        $('#avAccordion').accordion('destroy');
        // get the h3 part and tweak it's contents
        var h3bit = $(this).parent().clone();
        $(h3bit).removeClass('freeContacts').addClass('assignedContacts');
        $(h3bit).children('span').removeClass('ui-icon-circle-plus accordionAdd').addClass('ui-icon-circle-close accordionDel');
        // get the div part after the h3
        var divbit = $(this).parent().next().clone();
        // rebuild original accordion
        $( "#avAccordion" ).accordion({
            collapsible: true,
            autoHeight: false,
            active: false
        });
        // move contents to other accordion
     $('#assignedAccordion').append(h3bit)
         .append(divbit)
         .accordion('destroy')
         .accordion({
            collapsible: true,
            autoHeight: false,
            active: false
        });
        // hide original accordion entry
        $(this).parent().hide();
        //attach click handler to new item
        $('.accordionDel').click(function(){
            dropAssignedContact(this);
            return false;
        })
        return false;
    });

    function dropAssignedContact(obj){
        // unhide right hand object with appropriate data-id attr
        var id = $(obj).parent().attr('data-id');
       // delete myself
        $(obj).parent().remove();
        // unhide original
        $('.freeContacts[data-id='+id+']').show();
        $('#assignedAccordion').accordion('destroy').accordion({
            collapsible: true,
            autoHeight: false,
            active: false
        });
    }
});
4

1 回答 1

1

看到这个更新的小提琴:http: //jsfiddle.net/KTWEd/

function dropAssignedContact(obj){
    // unhide right hand object with appropriate data-id attr
    var id = $(obj).parent().attr('data-id'); 

   // delete myself
    $(obj).parent().next().remove();   // <---   Removes the adjacent div
    $(obj).parent().remove();

    // unhide original
    $('.freeContacts[data-id='+id+']').show();
    $('#assignedAccordion').accordion('destroy').accordion({
        collapsible: true,
        autoHeight: false,
        active: false
    });
 }
});
于 2013-03-05T11:37:03.490 回答