我正在使用svg创建一个应用程序,对于拖放我使用Jquery UI。是否可以在另一个Jquery UI事件中绑定Jquery UI事件。
//查看和删除活动
$("#droppable").droppable({
accept: ".draggable",
activeClass: "ui-state-hover",
hoverClass: "ui-state-active",
drop: function() {
$(this)
.addClass("afterdrop")
.find("p")
.html("Dropped!").draggable('disable');
},
out: function() {
console.log("out")
},
over: function() {
drop: function() {
//something here
}
}
});
});