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 的动画功能不适用于背景色。如何在不添加 jQuery UI 或其他插件的情况下顺利地将背景颜色从白色变为颜色?
您可以通过使用fadeIn() 的简单技巧来做到这一点。
$('element').css('background-color','red'); $('element').hide(); $('element').fadeIn(500);