我有大约 72 个部门的 class="box"
这些是覆盖我整个页面的一些黑色框,我想在我的功能完成后一个一个地随机删除这些分区。
这是我随机删除这些盒子的方法,
function removeBoxes(){
var erase;
//var to store the length of array of divisions
var total = $(".box").length;
while(total > 0)
{
//generating a random number
erase = Math.floor(Math.random() * total);
$(".box").eq(erase).fadeOut(10000, function(){
$(this).remove();
});
total = $(".box").length;
}
}
后来我还会在两次移除之间添加一些时间延迟,但现在我只想知道如何一一移除这些盒子。