JQuery实现页面刷新后导航保留鼠标点击标签的样式

$(function () {
$(".nav-pills li").removeClass("active");
$(".nav-pills li a").each(function () {
if ($($(this))[0].href == String(window.location))
$(this).parent().addClass('active');
});
});

你可能感兴趣的:(JQuery实现页面刷新后导航保留鼠标点击标签的样式)