alow many selectors on option "accept" of dropable

alow many selectors on option "accept" of dropable

Hi all,
my situtation is fullly simple!
I have a dropable container! I want let this container accpet many elements type via option 'accpet'!
Something like this:
$gallery.droppable({
        accept: ['li', 'img', '#trash li'],
        activeClass: 'custom-state-active',
        drop: function(ev, ui) {
            recycleImage(ui.draggable);
        }
    });
i tried above code, but it doesn't work at all!!!
Thank you!