导航标记

  作者:chrispy

//导航标记function navMenu() {var urls = window.location.href.split('/');$('.nav').find('li').each(function () {lis = $(this).find('a').attr('href').split('/');if (urls[urls.length - 2] == lis[lis

//导航标记

function navMenu() {

var urls = window.location.href.split('/');

$('.nav').find('li').each(function () {

lis = $(this).find('a').attr('href').split('/');

if (urls[urls.length - 2] == lis[lis.length - 2]) {

$(this).addClass('hover');

} else {

$(this).removeClass('hover');

}

});

$('#menu').find('li').each(function () {

lis = $(this).find('a').attr('href').split('/');

if (urls[urls.length - 2] == lis[lis.length - 2] && urls[urls.length - 1] == lis[lis.length - 1]) {

$(this).addClass('hover');

} else {

$(this).removeClass('hover');

}

});

}


有用  |  无用

猜你喜欢