JQuery拖放:只能删除第一个删除的项目

时间:2016-11-22 20:56:52

标签: jquery jquery-ui drag-and-drop

我有一个可拖动行的表,可以将药物放入可放置区域然后禁用,这样除非从可放置区域删除,否则不能再次删除相同的行。

这适用于一个项目,但不适用于从删除的区域删除其他项目。仅从删除的区域中删除第一个拖动的项目,当单击其他项目上的删除时,没有任何反应。删除的区域也保留了拖动项目的位置/占位符,因此当我在拖放区域中拖动新项目时,它会放在最后一个项目所在的位置。

<div class="table-responsive">
<table class="table table-striped">
    <thead>
        <tr class="bb">
            <th class="artcl_hdr text-center"></th>
            <th class="artcl_hdr text-center">Source</th>
            <th class="artcl_hdr text-center">Title</th>
            <th class="artcl_hdr text-center">Publish Date</th>
            <th class="artcl_hdr text-center">Share</th>
        </tr>
    </thead>
    <tbody>
        <?php
        if(is_array($bookmarks))
        {
                echo '<tr class="bmkitem" id="'.$bookmark['aid'].'">';
                echo '<td class="text-center bkgcol-white"><a href="#" title="Delete bookmark" id="bkm_delete"><i class="fa fa-times fa-lg pomegranate" aria-hidden="true"></i></a></td>';
                echo '<td class="text-center"><span id="article_source" class="label '.$label.'">'.$bookmark['name'].'</span></td>';
                echo '<td class="bkm-title text-left"><a href="'.$bookmark['link'].'" target="_blank" id="bookmark-link">'.$bookmark['title'].'</a></td>';
                echo '<td class="key-title text-center">'.$formatted_date.'</td>';
                echo '<td class="artcl_info text-left"><div class="add-this addthis_native_toolbox" data-url="'.$bookmark['link'].'" data-title="'.$bookmark['title'].'"></div></td>';
                echo '</tr>';
            }
        }
        ?>
    </tbody>
</table>
</div>

<div class="panel-body text-left" id="bkm-dropbox">
<div class="text-center">
    <p class="temp-text">Drag Bookmarks Here</p>
</div>
</div>


$(document).ready(function() {

$(".bmkitem").draggable({
    helper: "clone",
    containment: "document",
    cursor: 'move',
    revert: 'true',
    start: function(event, ui) {
        source = $(this).find('#article_source').text()
        contents = $(this).find('#bookmark-link').text();
    }
});

$('#bkm-dropbox').droppable({
    hoverClass: 'hover',
    acceptable: '.bmkitem',
    containment: 'document',

    drop: function(event, ui) {
        $(this).find(".temp-text").remove();

        $(this).append('<span><a href="Javascript:void(0)"" id="drop_delete"><i class="fa fa-times fa-lg pomegranate left_pad_push" aria-hidden="true"></i></a>' + source + ' - ' + contents + '</span><br />');

        ui.draggable.draggable("disable");
        selected_row = ui.draggable.find("i").hide();

        $('#drop_delete').on('click', function () {
            $(this).parent('span').remove();
            ui.draggable.draggable("enable");
            selected_row.show();
        });
    }
});
});

1 个答案:

答案 0 :(得分:0)

您可以反复创建具有相同ID的已删除项目。元素的id在html中必须是唯一的。

可拖动/可丢弃的常见错误是克隆的丢弃部分保留原始ID。您需要移除或更改丢弃的ID以不破坏dom选择器。

每次删除项目时,您都可以修改代码以创建“唯一”ID:

Set rngLookup = ActiveWorkbook.Names("Lookup").RefersToRange