首页 > 代码库 > jQuery高亮当前选中菜单

jQuery高亮当前选中菜单

假如页面中有以下菜单

<ul class="nav navbar-nav">
	<li class="active"><a href=http://www.mamicode.com/"/index.html">首页>


如果不是Bootstrap自行定义active CSS样式

<script type="text/javascript">
	$(document).ready(function() {
		$(".navbar-nav li").click(function() {
			$(this).addClass("active").siblings().removeClass("active");
		});
	});
</script>


作者:itmyhome

jQuery高亮当前选中菜单