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.
我想淡出所有具有 id="lt" 的跨度标签并淡入具有 id="en" 的标签。我试过这段代码,但它只适用于第一个跨度。
$('#lt').fadeOut(); $('#en').fadeIn();
您不应将 ID 用于多个标签。改用类。那么解决方案将是这样的:
$('.lt').fadeOut(); $('.en').fadeIn();