私はしようとしています: http://jsfiddle.net/2phuW/12/
if ( //if target is filled with items) {
//dosomething
}
しかし、私はそれを解決するためのロジックを取得できません。
私はしようとしています: http://jsfiddle.net/2phuW/12/
if ( //if target is filled with items) {
//dosomething
}
しかし、私はそれを解決するためのロジックを取得できません。
これを試してください:- 今のところ、いっぱいになった場合にアラートを実行しています。
すべてのスロットが埋まっているかどうかを確認するために、ここで条件を確認しています。
$('.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');
}