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();