Jquery:在容器中移动一个可拖动的元素

时间:2015-02-02 08:44:56

标签: jquery html css draggable droppable

在JQuery中,我试图将一个元素从Draggable拖到一个包含多个单元格的Droppable表中,然后在这些单元格之间拖动元素,如此演示http://fiddle.jshell.net/c6vL61fb/4/

但是,我遇到的问题是,当从可拖动表移动到droppable表时,元素仅首次自动定位,但之后不会从单元格移动到另一个单元格。我该如何解决这个问题。非常感谢你。

HTML

<div id="products">
    <div class="ui-widget-content">
       <img id="photo1" class="product" src="http://s4.postimg.org/fh1l9dae1/high_tatras_min.jpg" width="96" height="72">            
    </div> 
</div>
<div id="cont">
    <p>Container</p>
    <table id="container" width="100%" border="1">
        <tr height="100px">
            <td id='hello1' class='hello ui-widget-content' width="50%">&nbsp;</td>
            <td id='hello2' class='hello ui-widget-content' width="50%">&nbsp;</td>
        </tr>
        <tr height="100px">
            <td id='hello3' class='hello ui-widget-content' width="50%">&nbsp;</td>
            <td id='hello4' class='hello ui-widget-content' width="50%">&nbsp;</td>
        </tr>
    </table>
</div>

的Javascript

$(function () {
    $(".hello")
    .droppable({
        activeClass: "ui-state-default",
        hoverClass: "ui-state-hover",
        drop: function(event, ui) {
            var self = $(this);
            var productid = ui.draggable.attr("id");
            if (self.find("[id=" + productid + "]").length) return;                    

            $(this).append($(ui.draggable).clone());

            var cartid = self.closest('.hello').attr('id');
            $(".hello:not(#"+cartid+") [id="+productid+"]").remove();

        }
    })
    .sortable();

    $(".product").draggable({
        appendTo: 'body',
        helper: 'clone'
    });
});

1 个答案:

答案 0 :(得分:2)

删除元素时只需删除样式。所以以下一行:

$(this).append($(ui.draggable).clone());

必须更改为

$(this).append($(ui.draggable).clone().removeAttr('style'));

Here is your updated demo