有什么方法可以检测在“ droppables activeClass:function(){}”上处于活动状态的可拖动对象

时间:2019-05-08 18:15:54

标签: jquery jquery-ui-droppable

我正在使用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 () {

        }


    });

0 个答案:

没有答案