$(".foo").each(function() {
Draggable.create(this, {
trigger: $(this).find(".a4")
});
Draggable.create(this, {
type: 'rotation',
trigger: $(this).find(".a0, .a2, .a6, .a8"),
cursor: 'alias'
});
});
如果我创建2个可拖动的,只有最后一个可以抓住。在同一个对象上有多个触发器的方法吗?