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.
我不认为这应该是一个问题......我试图使用你的代码来复制行为。
检查这个小提琴...希望有帮助。
小提琴
$(document).ready(function () { $(".aA").click(function () { $('#A').fadeIn(1000); $('#B').fadeOut(1000); }); $(".aB").click(function () { $('#A').fadeOut(1000); $('#B').fadeIn(1000); }); });