jquery droppable接受条件

时间:2011-09-19 21:48:27

标签: jquery jquery-ui

如何在jquery中为droppable元素添加第二个accept条件?

accept: ":not(.ui-sortable-helper)",
accept: function() {
if($("#playlist li").length <=<?php echo $max_item; ?>) return    true;              
},

这不起作用

由于

1 个答案:

答案 0 :(得分:2)

使用函数比使用选择器更灵活 - 因为它允许执行相同的操作。我会将整个条件放在函数中,如下所示:

accept: function(element) {
   return (your_condition_1 
     && !(element.hasClass('ui-sortable-helper'))
   );
},