我正在使用jquery-ui,我有这个droppable,现在在每个可拖动对象上它变为绿色。我只想在开始拖动特定的可拖动对象时更改其颜色。
$("#dropp").droppable({
activeClass: function () {
$(this).css('background-color', 'green');
},
hoverClass: function () {
$(this).css('background-color', 'red');
},
out: function () {
$(this).css('background-color', 'black');
},
drop: function () {
}
});