我正在尝试:http://jsfiddle.net/2phuW/12/
if ( //if target is filled with items) {
//dosomething
}
但我无法理解这一点。
答案 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');
}