删除父元素jQuery

时间:2013-11-01 10:27:39

标签: javascript jquery

如何在点击时删除所有元素,包括其父元素。选项卡是动态生成的。我到目前为止尝试的是:

我正在使用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>

Popover用于添加新标签

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

2 个答案:

答案 0 :(得分:1)

主要问题是remove方法不知道调用哪个元素,我更改了删除以使用jQuery处理程序而不是内联的单击处理程序。

尝试

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

jQuery(function () {
    $(document).on('click', '.icon-clear-remove', function () {
        var $this = $(this);
        bootbox.confirm("Are you sure?", function (result) {
            if (result != false) {
                alert('delete:' + $this[0].tagName)
                var $a = $this.closest('.g-tabs');
                alert($a.length)
                $($a.attr('href')).remove();
                $a.parent().remove();
                $(".nav-tabs li").children('a').first().click();
            }
        });
    })
})

答案 1 :(得分:0)

我无法确切地说明你是如何实现这一点的,但如果我的猜测是对的,这应该可行。 如果它不起作用,你应该考虑设置一个小提琴。

function remove() {
     bootbox.confirm("Are you sure?", function(result) {
        if (result) { $(this).remove(); }
     });
}