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 中?
你可以这样做:
$('#toHide').delay(2000).hide(0); // delay 2 seconds then hide.
现场演示。
使用延迟它很简单,并且会完成它
你可以这样使用
$('#foo').hide(300).delay(800).show(400);
并检查这个 http://api.jquery.com/delay/