1

我正在拖放一些元素(在 Kendo UI 的帮助下)并生成作为可拖动元素的克隆元素的新元素,我的问题是我想为它们提供新的 id?我怎样才能做到这一点?

4

1 回答 1

4

作为droptargetOnDrop您的drop事件处理程序,您应该这样做:

function droptargetOnDrop(e) {
    var newEl = $(e.draggable.currentTarget).clone();
    newEl.attr("id",kendo.guid()); 
    e.dropTarget.append(newEl);
}

在此处查看您修改过的小提琴:http: //jsfiddle.net/OnaBai/rTxaE/2/

于 2013-06-17T11:32:34.800 回答