87,991
社区成员
发帖
与我相关
我的任务
分享
$(".sort").sortable({ opacity: 0.5, cursorAt: { top: 60, left: 70} });
$(".sort").disableSelection();
$("#recycle_bin").droppable({
accept: "#recycle_bin",
activeClass: "ui-state-hover",
hoverClass: "ui-state-active",
drop: function (event, ui) {
alert("Dropped");
}
});