2
我想我的導航加載沒有加載頁面..所有作品。但導航元素<li> nav </li>
應該獲得另一種風格的類。「主動」。我想這一點,但不工作,你卡恩看到我的page 代碼會發生什麼:JQuery導航集類
$('#content').children('section').not('#home').hide();
$(".a").hasClass('navigation-element').parent().removeClass('active');
$(".a").click(function(e){
e.preventDefault();
if ($(this).hasClass('navigation-element')){
var $target = $('#' + $(this).attr('href')).stop(true, true);
var $secs = $('#content > section').not($target).stop(true, true).filter(':visible');
if ($secs.length) {
$secs.fadeOut(function() {
$target.fadeIn();
$(this).parent().addClass('active');
});
} else {
$target.fadeIn();
}
} else if ($(this).hasClass('hide')){
$(this).parent().fadeOut();
}
});
的誤差在2號線和12