标签: javascript drag-and-drop
在jQuery中,我可以克隆一个元素以防止在拖放时删除原始文件:
createRadio($questions, $choices)
有没有办法用原生Javascript做到这一点?
我目前正在为$(".draggable").draggable({ helper: "clone" }); 听众使用此代码:
$(".draggable").draggable({ helper: "clone" });
drop
);