【发布时间】:2021-09-29 18:46:22
【问题描述】:
$('#gallerie ul li:eq(1)').animate({opacity: 1}, 1250).remove(); //results in instand remove
$('#gallerie ul li:eq(1)').delay(3000).remove(); //instant remove
$('#gallerie ul li:eq(1)').remove().delay(3000); //that didnt work either
如何在 3 秒后移除对象而不是立即移除?
【问题讨论】:
标签: javascript jquery dom html-lists