我想显示一个loader.gif文件,当用户单击删除按钮时,将显示loader.gif文件,然后在同一时间或下一步从视图中删除表列。我遇到的问题是,只有在删除列后才会显示loader.gif文件。
$(".removeButton").eq(i).click(function() {
$('.loader').show(); // gif file is here
let tbodyTrLength = $(".table-hideable tbody tr").length;
for (let t = 0; t < tbodyTrLength; t++) {
$(".table-hideable tbody tr").eq(t).find("td").eq(i).hide();
$(".table-hideable thead tr:nth-child(2) th").eq(i).hide();
$(".footer-restore-columns").removeClass("d-none");
}
});
1条答案
按热度按时间o8x7eapl1#
尝试在另一个线程下使用
setTimeout
运行它。因为主线程会很忙碌,所以它不会很漂亮。你可以为循环的每次迭代设置一个超时。编辑:为了安全起见,我将
i
参数复制到了内部函数中,这样当函数运行时,它将位于作用域中。