我有褪色的问题。它适用于Chrome,但在Firefox中无效。它只是出现,但没有褪色。我也不能让它淡出。这是代码:
$(".menu_content").hide(); if (location.hash != "") { $(location.hash).show(); $('.menu-nav li:has(a[href="location.hash"])').addClass("current").show(); $(this).find("a").addClass("current"); } else { $(".menu-nav li:first").addClass("current").show(); $(".menu_content:first").show(); location.hash = "welcome"; } $(".menu-nav li").click(function () { $(".menu-nav li").removeClass("current"); $(this).addClass("current"); $(".menu_content").hide(); var activeTab = $(this).find("a").attr("href"); location.hash = activeTab; $(activeTab).fadeIn(); return false; });