首页 > 代码 > 高亮导航链接

高亮导航链接

这段代码总要用到,贴在这里备忘:

1
2
3
4
5
6
7
8
9
$(document).ready(function(){
	var str=location.href.toLowerCase();
	$(".nav li a").each(function() {
		if (str.indexOf(this.href.toLowerCase()) > -1) {
			$("li.active").removeClass("active");
			$(this).parent().addClass("active");
		}
	});
})