Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了显示我的成功消息,我使用 jQuery fadeOut 方法来淡入淡出。但我想让它在一段时间内可见,然后淡出。
$('#foo').fadeIn(200).fadeOut(200).remove();
用于淡出和淡入之间的时间延迟
$('#successDiv').fadeIn(500).delay(10000).fadeOut(500).remove();
延迟参考
或者
$("#successDiv").animate({opacity: 1.0}, 5000).fadeOut();