1

クリック時に親を含むすべての要素を削除するにはどうすればよいですか。タブは動的に生成されます。私がこれまでに試したことは次のとおりです。

確認にはbootboxを使用しています。

function remove() {
        bootbox.confirm("Are you sure?", function(result) {
          if( result != false ) {
              var anchor = $(this).siblings('a');
              $(anchor.attr('href')).remove();
              $(this).parent().remove();
              $(".nav-tabs li").children('a').first().click();
          }
    }); 
}

削除するタブは、次の方法で生成されます。

$(document).on('submit','#pop-form', function(e) {
    // make an ajax request
    $.post('../admin/FLT_add_tab.do',
            $('#pop-form').serialize(),
            function( data ) {
                // if data from the database is empty string
                if( $.trim( data ).length != 0 ) {
                    // hide popover
                    $('#popover').popover('hide');
                    //append new tab and new tab content
                    var id = $(".nav-tabs").children().length - 1;
                    $('#popover').closest('li').before('<li><a href="#tab_'+ id +'" data-toggle="tab" class="g-tabs">' + data + '&nbsp;</a></li>');         
                    $('.tab-content').append('<div class="tab-pane" id="tab_' + id + '"> <c:import url="flt-pis.html"></c:import> </div>');
                } else {
                    // error handling later here
                }
            }
    );
    e.preventDefault();
});

アップデート:

remove()<i>ユーザーがタブをホバーすると、追加によって呼び出されます

$(document).ready( function() {
    $(document).on('mouseenter', 'a.g-tabs', function() {
         $( this ).append( $('<i class="icon-clear-remove" onClick="tabRemove();"></i>') );
    });
    $(document).on('mouseleave', 'a.g-tabs', function() {
         $( this ).find( ".icon-clear-remove:last" ).remove();
    });
});

ページが更新されたかどうかに関係する JS

<!-- Other tabs from the database -->
<c:forEach var="tabNames" items="${ allTabs }">
    <li><a href="#tab_${ tabNames.value }" data-toggle="tab" class="g-tabs">${ tabNames.key }&nbsp;</a></li>
</c:forEach>

新しいタブを追加するためのポップオーバー

<!-- Add new tab -->
<li><a href="#" id="popover">New <i class="icon-plus-sign"></i></a></li>
4

2 に答える 2