-1

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

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

但我无法得到解决它的逻辑。

4

1 回答 1

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');
   }

演示

于 2013-05-14T04:14:39.427 回答