我需要模拟一个桌面图标拖放,我这样做:
$(".draggable").kendoDraggable({
container: $("#desktop"),
hint: function() {
return $(".draggable").clone();
},
dragend: function(e) {
console.log(e);
console.log(e.currentTarget.attr("src"));
e.currentTarget.css("top",e.y.location);
e.currentTarget.css("left",e.x.location);
}
});
但我不确定这是否是一个好方法,并且拖动回滚效果打破了我的解决方案。
使用 KendoUI(No Jquery UI draggable)有一个简单的方法来做到这一点。
任何帮助!