jQuery:将clone添加到容器中

时间:2009-05-25 08:52:25

标签: jquery clone

是否有其他方法可以将克隆元素添加到容器中,而不是:

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

$("#container").append(ui.draggable.clone());

append只将元素放在#container中的最后一个元素之后。我想决定职位应该在哪里。

1 个答案:

答案 0 :(得分:2)

您可以使用before()after()在特定位置插入元素。

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

$("#container #target").after(ui.draggable.clone());