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.
我已经阅读了文档,但我无法深入了解为什么这个示例不会在 div 中消失:
$('#application-name-label').fadeIn('slow');
这是一个唯一的 id,但该元素在页面加载时就在那里,不会淡入。
像这样:
http://jsfiddle.net/GBjxH/
它消失得很好。如果您的计算机加载页面太慢,您可能看不到它。试试看.fadeIn(5000)什么的。
.fadeIn(5000)
你有没有放:
#application-name-label { display: none; }
?