当droppable目标用item填充时执行命令

时间:2013-05-14 03:47:54

标签: jquery arrays droppable

我正在尝试:http://jsfiddle.net/2phuW/12/

if ( //if target is filled with items) {
 //dosomething
}

但我无法理解这一点。

1 个答案:

答案 0 :(得分:0)

试试这个: - 现在我正在运行警报,如果它被填满了。

我只是在这里检查条件,看看是否所有的插槽都已填满。

$('.ui-droppable').find('span.closer').length == $('.ui-droppable').length


  if ($('.ui-droppable').find('span.closer').length == $('.ui-droppable').length) {
     alert('Listo ahora puedes simularlo');
     //if target is filled
     $(".status1").replaceWith('<i class="icon-check"></i> Listo ahora puedes simularlo'); //update status
      //put composition into params
   } else {
        $(".status1").replaceWith('<i class="icon-edit"></i> Sigue');
   }

Demo