0
續從這裏:jquery droppable acceptjquery的可棄接受多於1個元素/選擇器
$(".droppable").droppable({
accept: function(d) {
if(d.hasClass("foo")||(d.attr("id")=="bar")){
return true;
}
}
});
如果我不是靶向的元件,但一組元素什麼?比如「ul#moo li」。我將如何改變中頻條件?