是否有其他方法可以将克隆元素添加到容器中,而不是:
$(".product").draggable({
helper: 'clone'
});
$("#container").append(ui.draggable.clone());
append只将元素放在#container中的最后一个元素之后。我想决定职位应该在哪里。
答案 0 :(得分:2)
您可以使用before()
或after()
在特定位置插入元素。
$(".product").draggable({
helper: 'clone'
});
$("#container #target").after(ui.draggable.clone());