jquery droppable accept

后端 未结 8 2161
轻奢々
轻奢々 2020-12-13 07:02

Can anyone tell me how I can write a function in accept condition and then how does it finds out that what to accept and what not to accept. For example, I want to accept

8条回答
  •  暖寄归人
    2020-12-13 07:48

    Instead of using a class as accept, you can just use a function like and return true if it matches your criteria

    $('#mydroppable').droppable(
    {
        accept: function() { return true; },
        drop: function () { alert("Dropped!"); }
    });
    

提交回复
热议问题