JQuery可排序拖放问题

时间:2015-07-27 10:56:08

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

我最近实现了JQuery拖放功能,但我发现了一个小错误。我可以将元素拖动到最小的数量,当我决定放弃它时它仍会被分配,因为我不想再拖动该元素。

如何检查该元素是否在我要删除所选元素的表格上方?

拖放的工作原理(只需略微拖动)

enter image description here

它应该如何运作(不要让它稍微拖动)

enter image description here

可排序代码:

$(document).ready(function ()
{

$("#Assign tbody").sortable(
{
    connectWith: "#Assign tbody",
    scroll: false,
    cursor: 'move',
    stop: function (event, info)
    {
        alert("Done Assign");
    }
}).disableSelection();

$("#Remove tbody").sortable(
{
    connectWith: "#Remove tbody",
    scroll: false,
    cursor: 'move',
    stop: function (event, info)
    {
        alert("Done Remove");
    }
}).disableSelection();
});

JS小提琴示例: http://jsfiddle.net/Lhk941tc/

0 个答案:

没有答案