-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 に答える